Row major order matrix
11 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Im trying to create a 11x11 matrix in column matrix order using numbers 1-121 but i cannot figure out how to do it. I'm trying to use the ones and zeros command and transpose and similar functions.
0 Commenti
Risposte (1)
Andrei Bobrov
il 15 Ott 2015
Modificato: Andrei Bobrov
il 16 Ott 2015
out = bsxfun(@plus,1:11:111,(0:10)')
or
out = reshape(1:121,11,[]);
or
out = zeros(11);
out(:) = 1:121;
1 Commento
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!