how to covert a mx1 matrix into mxm matrix ?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
how to covert a mx1 matrix into mxm matrix ?
0 Kommentare
Antworten (1)
Wayne King
am 1 Mär. 2013
Bearbeitet: Wayne King
am 1 Mär. 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 Kommentare
Siehe auch
Kategorien
Mehr zu Data Types finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!