Computational problem

조회 수: 1 (최근 30일)
Nello Troccia
Nello Troccia 2012년 3월 27일
Hi, this simple code gives a matrix.
n=6;
m=5;
for p=2:1:(n-1)
cc=(2+(m*(p-1))):1:(m*p-1)
end
in the command window it returns the values: 7,8,9,12,13,14,17,18,19,22,23,24; but in the workspace it save a matrix of three elements: 22,23,24. How could I do to have a matrix of all element? (if is possible without for) Regards

채택된 답변

Andrei Bobrov
Andrei Bobrov 2012년 3월 27일
n=6;
m=5;
p = 2:(n-1);
for j1 = numel(p):-1:1
cc(:,j1) = (2+(m*(p(j1)-1))):1:(m*p(j1)-1);
end
cc = cc(:).'
  댓글 수: 1
Nello Troccia
Nello Troccia 2012년 3월 27일
thanks a lot

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by