vectors from array
조회 수: 6 (최근 30일)
이전 댓글 표시
What is the best way to create vectors from columns of an array?
댓글 수: 0
채택된 답변
David Young
2011년 12월 14일
vector = array(:, column_number)
댓글 수: 5
Paulo Silva
2011년 12월 14일
see my Answer and http://matlab.wikia.com/wiki/FAQ#How_can_I_create_variables_A1.2C_A2.2C....2CA10_in_a_loop.3F
추가 답변 (1개)
Paulo Silva
2011년 12월 14일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!