how to copy first column form any array to contain other array
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
hello every one I have a question ?
I have 100 picture and covert to array so I have many array(100). I want to copy first column from first array to contain on first column in array A(new empty array) after that copy first column from second array to contain on second column in array A and copy first column from third array to contain on third column in array A until all array(100)
help me please
댓글 수: 0
답변 (1개)
madhan ravi
2018년 11월 7일
A{1,100} %PRE-ALLOCATION
for i = 1:100
A(:,i)=array(:,i);
end
A
댓글 수: 2
auttapon sripradit
2018년 11월 7일
auttapon sripradit
2018년 11월 7일
편집: auttapon sripradit
2018년 11월 7일
이 질문은 마감되었습니다.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!