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 日

0 投票

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 件のコメント

GEORGIOS BEKAS
GEORGIOS BEKAS 2018 年 2 月 12 日
error: p1080: A(I,J,...) = X: dimensions mismatch
GEORGIOS BEKAS
GEORGIOS BEKAS 2018 年 2 月 12 日
out=[]
and then it needs to be reshaped

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeLoops 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