building a square matrix out of a vector
16 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi everyone,
im trying to build a [n X n] matrix from a [1 n*n] vector. can anybody give me a simple code?
0 commentaires
Réponse acceptée
Mischa Kim
le 8 Mar 2014
Modifié(e) : Mischa Kim
le 8 Mar 2014
Hossein, use reshape:
A = 1:4*4;
n = sqrt(length(A)); % if A is indeed an n*n vector
B = reshape(A,n,n)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices 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!