How can I create a matrix of N columns by using just one vector.

1 visualización (últimos 30 días)
Tommaso Pellegrino
Tommaso Pellegrino el 23 de Abr. de 2015
Respondida: Theo el 23 de Abr. de 2015
Hi! If I have a vector like (5 8 7 9 8 4 7)' how can I create a matrix of N (for example 1000) columns formed by this vector? Thank you!

Respuestas (1)

Theo
Theo el 23 de Abr. de 2015
vec= [5 8 7 9 8 4 7]';
vec_repeat=repmat(vec,1,1000);

Categorías

Más información sobre Creating and Concatenating Matrices 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!

Translated by