vectors from array
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
What is the best way to create vectors from columns of an array?
0 comentarios
Respuesta aceptada
David Young
el 14 de Dic. de 2011
vector = array(:, column_number)
5 comentarios
Paulo Silva
el 14 de Dic. de 2011
see my Answer and http://matlab.wikia.com/wiki/FAQ#How_can_I_create_variables_A1.2C_A2.2C....2CA10_in_a_loop.3F
Más respuestas (1)
Paulo Silva
el 14 de Dic. de 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
0 comentarios
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!