Info

この質問は閉じられています。 編集または回答するには再度開いてください。

for loop help matlab error

2 ビュー (過去 30 日間)
B
B 2015 年 3 月 24 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I really can't understand the arrays and matrices system in matlab...:( Please help with the following; I'm getting (??? Attempted to access Tc(21); index out of bounds because numel(Tc)=20.
Error in ==> newestt at 9 Tc0=Tc(i);) ================================================================================================== num=20; for i=2:num; Tc0=110; Tc(20)=27; Tc(1)=109; detaTc=(Tc0-Tc(20))/num; Tc(i)=(Tc0- detaTc) i=i+1; Tc0=Tc(i); end
Thanks!~

回答 (2 件)

Julia
Julia 2015 年 3 月 24 日
Hi,
The error states clearly, that you try to access the 21st entry of Tc, but Tc has only 20 entries:
i=i+1;
Tc0=Tc(i);
In the last iteration for i=num (in your example i=20), this leads to the error.
  3 件のコメント
Stephen23
Stephen23 2015 年 3 月 24 日
編集済み: Stephen23 2015 年 3 月 24 日
@B: What do you expect MATLAB to do? The array has twenty elements, and you are trying to get the twenty-first element, which clearly does not exist, thus the error. There are two solutions:
  1. Enlarge the array to cover all indices that you need, or
  2. Do not try to extract an index that does not exist: this could include using min to restrict the subscript value, or logical indexing, or an if statement as a special case.
What you choose depends on your algorithm, your requirements, how you want to code, etc.
The best choice would be to remove that loop altogether, and learn how to write vectorized code in MATLAB. This would fix several issues with the code, such as the bizarre incrementing of the loop variable within a for loop, and the reassignment of Tc(20) within the loop.
Note that you should avoid using i and j as loop variable names, as these are names of the inbuilt imaginary unit.
Try this:
num = 20;
x = 27;
Tc = 110;
for k = 2:num
Tc(k) = Tc(k-1) - (Tc(k-1)-x)/num;
end
Julia
Julia 2015 年 3 月 24 日
How about this code?
num=20;
Tc0=110;
Tc(20)=27;
Tc(1)=109;
for i=2:num;
detaTc=(Tc0-Tc(20))/num;
Tc(i)=(Tc0- detaTc)
Tc0=Tc(i);
end
If you set Tc0=110 inside the loop it will always overwrite the vale Tc0=Tc(i).

Stalin Samuel
Stalin Samuel 2015 年 3 月 24 日
num=20;
for i=2:num;
Tc0=110;
Tc(20)=27;
Tc(1)=109;
detaTc=(Tc0-Tc(20))/num;
Tc(i)=(Tc0- detaTc)
Tc0=Tc(i);
i=i+1;
end
  2 件のコメント
B
B 2015 年 3 月 24 日
Thanx; the error msg has disappeared now,, but the loop is not functioning accurately.. I'm sure that I have done some mistakes there cz when I run the file, I should get a decreasing Tc: something similar to : Tc= 105,100,95,90,....,27
Stephen23
Stephen23 2015 年 3 月 24 日
@stalin samuel: Note that you should avoid using i and j as loop variable names, as these are names of the inbuilt imaginary unit.

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by