Vector to rows and columns

I have a vertical vector say 1:100
and I want to shape it into a 10 by 10 matrix but instead of up 123.. going down in the first column I want to go across left to right ie
12345
678910.
I tried reshape already but that didnt work.
Thanks

 Risposta accettata

Try this:
T = [ 0
0
0
0
443.8427
538.0802
943.8368
0
699.2106
764.6411
949.4726
0
823.7174
871.8012
949.7888
0
852.0567
949.0575
949.9969
0
686.3944
946.7604
0
0
0
0
0
0];
TReshaped = reshape(T(:), 4, [])'
TReshaped = 7×4
0 0 0 0 443.8427 538.0802 943.8368 0 699.2106 764.6411 949.4726 0 823.7174 871.8012 949.7888 0 852.0567 949.0575 949.9969 0 686.3944 946.7604 0 0 0 0 0 0

3 Commenti

Thanks! Is there a way to list every thing like that automatically? as I am doing Finite inferent matrix so when my delta t gets smaller theres going to be alot of numbers.
I don't know what that means. I left off the semicolon so it spits out the matrix value to the command window. Please explain in more detail
  1. what "list" means to you, and
  2. what "automatically" means to you.
My apologies I thought you retyped my array out by hand and that was the soltuion. Your answer worked perfectly. Thank you.

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by