fill column elements with the column number?

조회 수: 2 (최근 30일)
Dmitry Timofeev
Dmitry Timofeev 2020년 9월 14일
편집: madhan ravi 2020년 9월 14일
How can I fill column elements with the column number. First column contains only 1, second only 2, third only 3, etc.
  댓글 수: 1
Dmitry Timofeev
Dmitry Timofeev 2020년 9월 14일
Is it possible to do this without cycle? I mean without 'for'?

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

채택된 답변

Hayden Garmon
Hayden Garmon 2020년 9월 14일
편집: Hayden Garmon 2020년 9월 14일
m=5;% m is length of columns
n=4;% n is number of columns
for i =1:n
A(:,i)=ones(m,1)*i ;
end
A =
1 2 3 4
1 2 3 4
1 2 3 4
1 2 3 4
1 2 3 4
  댓글 수: 4
Dmitry Timofeev
Dmitry Timofeev 2020년 9월 14일
Thanks!
madhan ravi
madhan ravi 2020년 9월 14일
편집: madhan ravi 2020년 9월 14일
+1
A = ones(m, 1) * ii
%or
A = repmat(ii, m, 1)

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dynamic System Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by