vectors from array
Ältere Kommentare anzeigen
What is the best way to create vectors from columns of an array?
Akzeptierte Antwort
Weitere Antworten (1)
Paulo Silva
am 14 Dez. 2011
a=randi(5,3,5) %sample array
%put all columns of the array in diferent cells
b=arrayfun(@(x)a(:,x),1:size(a,2),'uni',0);
c=1; %choose the column
v=b{c} %get the vector of that column
Kategorien
Mehr zu Cell Arrays 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!