how to covert a mx1 matrix into mxm matrix ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
how to covert a mx1 matrix into mxm matrix ?
0 comentarios
Respuestas (1)
Wayne King
el 1 de Mzo. de 2013
Editada: Wayne King
el 1 de Mzo. de 2013
X = randn(10,1);
X = repmat(X,1,10);
The above repeats the column vector, X, as the remaining m-1 columns of the matrix.
0 comentarios
Ver también
Categorías
Más información sobre Special Functions en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!