For loop, two variables

조회 수: 1 (최근 30일)
Jin
Jin 2014년 2월 5일
댓글: Jin 2014년 2월 5일
Hello,
I am new to the matlab and just start using it. Here is my first task and I am stuck.
I was using a for loop to calculate the changing Temperature with Time dT(i) = dT(i-1)*t where t = (1:100), and i=(2:100), start point dT(1) = 0.35
Here is my script: i = 1 dt(i)=0.35 i = 2:100; for t=1:100 dt(i,t)=dt(i-1)*t; end; plot (dt)
As in result, there are 100 of curves.
Help!!!

채택된 답변

Amit
Amit 2014년 2월 5일
편집: Amit 2014년 2월 5일
dT = zeros(100,1); % Initalize
dT(1,1) = 0.35;
for j = 2:100
dT(j,1) = dT(j-1,1)*j;
end
plot(dT);
The reason you get 100 curves, because dT(i,t) where i = 2:100 simply suggests that there are 100 rows and with every loop you add a new column for each row with some scalar value calculated.
  댓글 수: 1
Jin
Jin 2014년 2월 5일
Hello Amit,
Thank you so much, it worked.
Thank you again J

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by