Splitting a large vectors into a matrix
Ältere Kommentare anzeigen
I have a vector with 1000 elements that I would like to split into a 20x50 matrix. Here's my code so far.
z= sym(1:1000);
e=(exp(z))
matofe=double(e);
finalmat=sym(matofe)
Any suggestions?
Antworten (1)
the cyclist
am 3 Nov. 2015
e_matrix = reshape(e_vector,20,50);
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!