how to covert a mx1 matrix into mxm matrix ?

7 Ansichten (letzte 30 Tage)
MD.FAISAL
MD.FAISAL am 1 Mär. 2013
how to covert a mx1 matrix into mxm matrix ?

Antworten (1)

Wayne King
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.

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!

Translated by