How to add columns to form a matrix?

조회 수: 2 (최근 30일)
Ahmad Hasnain
Ahmad Hasnain 2018년 12월 12일
답변: madhan ravi 2018년 12월 12일
I am calculating a column vector in a FOR loop. I get N columns and I want to put them in a matrix.
for i = 1: N
dc(i) = ...
end
dcmatrix =[ dc(1) ; dc(2); .... ;dc(N) ]
%% The above example of dcmatrix is doing it manually. How can I do it with a code?%%
I calculate this dc column vector. I want to all the column vector in the form of matrix. I don't know how to do it.

채택된 답변

Adam Danz
Adam Danz 2018년 12월 12일
편집: Adam Danz 2018년 12월 12일
Create the matrix (or vector) from within the for-loop, not afterwards.
dcmatrix = nan(N, 1); %allocate the matrix (I don't know how many rows you need).
for i = 1:N
dcmatrix(i) = ... %On each loop, data is stored in row i
end

추가 답변 (2개)

madhan ravi
madhan ravi 2018년 12월 12일
dcMatrix = dc.'

madhan ravi
madhan ravi 2018년 12월 12일
dc(i,1) % - > column vector
dc(1,i) % - > row vector
  댓글 수: 1
Ahmad Hasnain
Ahmad Hasnain 2018년 12월 12일
Your previous answer also worked. Thanks...

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by