How can the code memorize the generated vector?

1 view (last 30 days)
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

Answers (1)

KSSV
KSSV on 12 Feb 2018
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

Categories

Find more on MATLAB Coder in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!