index must be a positive integer or logical

for i=1:1:7
P(1)=1000;
P(7)=500;
f(i)=P(i-1)^2-P(i-1)*P(i)-P(i)^2+P(i)*P(i+1);
disp f(i)
end
All my declared variables here are integers. How do I resolve this error?

回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 3 月 22 日
編集済み: Azzi Abdelmalek 2016 年 3 月 22 日

0 投票

when you write p(i), make sure that i is a positive integer, not equal to 0. in your case, you have p(i-1), if i is equal to 1, then i-1 will be 0, which is not allowed by Matlab as an index

1 件のコメント

Amey
Amey 2016 年 3 月 22 日
Yes that worked! thank you.

この質問は閉じられています。

タグ

質問済み:

2016 年 3 月 22 日

閉鎖済み:

2021 年 8 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by