How can the code memorize the generated vector?

Is there a quick way to memorize the generated out matrix in each iteration?
in1=[1 8 12]
in2=[4 5 9]
out=[]
counter = 1
for i =1 :length(in1)
if in1(i)<in2(i)
out=in1(i):in2(i)
else
out=in1(i):-1:in2(i)
end
end

답변 (1개)

KSSV
KSSV 2018년 2월 12일
in1=[1 8 12]
in2=[4 5 9]
out=zeros(length(in1),[]) ;
counter = 1
for i =1 :length(in1)
if in1(i)<in2(i)
out(i,:)t=in1(i):in2(i)
else
out(i,:)=in1(i):-1:in2(i)
end
end

댓글 수: 2

error: p1080: A(I,J,...) = X: dimensions mismatch
out=[]
and then it needs to be reshaped

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

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품

태그

질문:

2018년 2월 12일

댓글:

2018년 2월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by