강의

멘토링

커뮤니티

Inflearn Community Q&A

foranding9364's profile image
foranding9364

asked

Programming Starting with MATLAB

for

안녕하세요 코딩좀 봐주실수 있을까요?

Written on

·

266

0

clear t

clear i

for

i=[1:100];

t=(i-1)0.01;

if t<= 5

tt1(i)=t;

y1(i)=0.2t*exp(-2);

plot(tt1(i),y1(i),'o')

hold on

elseif 5<t<= 10;

tt2(i)= t;

y2(i)=log(t)-1

plot(tt1(i),y2(i),'x')

end

end

실행이 되지 않는데 이유를 모르겠습니다

MATLAB

Answer

This question is waiting for answers
Be the first to answer!
foranding9364's profile image
foranding9364

asked

Ask a question