how can i obtain this ?

2 visualizzazioni (ultimi 30 giorni)
diadalina
diadalina il 21 Nov 2017
Commentato: diadalina il 21 Nov 2017
i would like to use the command reshape to convert a vector v=11:99 to a matrix (9x9), how can i do this, can anyone help me ?

Risposta accettata

Birdman
Birdman il 21 Nov 2017
You can not do it when v=11:99.
If you want to convert to 9x9 matrix, then you need to have 81 elements in your vector, with this you have 89. If you define it as v=11:91, then the following command will do what you want.
v=reshape(v,9,9)
  13 Commenti
Birdman
Birdman il 21 Nov 2017
v=11:99;
IND=find(mod(v,10)==0);
v(IND)=[];
v=reshape(v,9,9)
diadalina
diadalina il 21 Nov 2017
that's exactly , what i want, thank you very much.

Accedi per commentare.

Più risposte (1)

KL
KL il 21 Nov 2017
Simpler with just one line,
bsxfun(@plus,1:9,(10:10:90).')
  1 Commento
diadalina
diadalina il 21 Nov 2017
thank you Mr,Kl for your answer.

Accedi per commentare.

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!

Translated by