How to construct this matrix without loop?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi, everyone:
suppose I have a vector x=[a b c d e f g h ... z]. Is it possible to construct a matrix such that:
X=[a b c d; b c d e; c d e f; d e f g; e f g h; ... w x y z];
without for-loop?
many thanks
0 comentarios
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 28 de Oct. de 2013
Editada: Azzi Abdelmalek
el 28 de Oct. de 2013
Example
x=[2 4 8 12 13 19 20 25]
out=cell2mat(arrayfun(@(ii) x(ii:ii+3),(1:numel(x)-3)','un',0))
0 comentarios
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!