how to covert a mx1 matrix into mxm matrix ?

7 vues (au cours des 30 derniers jours)
MD.FAISAL
MD.FAISAL le 1 Mar 2013
how to covert a mx1 matrix into mxm matrix ?

Réponses (1)

Wayne King
Wayne King le 1 Mar 2013
Modifié(e) : Wayne King le 1 Mar 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.

Catégories

En savoir plus sur Data Types dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by