Why do I get "Array indices must be positive integers or logical values" error when using?

Array indices must be positive integers or logical values.
clc;
clear;
y(1)=0;
y(2)=1;
k=3.50
y=2 - 0.4 +1.2*y(k-1) -0.72*y(k-2);
stem(k,y,'linewidth',2);
grid;
xlabel('K');
k=0.49;

 採用された回答

James Tursa
James Tursa 2020 年 9 月 1 日
編集済み: James Tursa 2020 年 9 月 1 日

0 投票

k is 3.5
So y(k-1) is y(2.5) and y(k-2) is y(1.5). The indexes are not positive integers, hence the error.
Maybe you meant
k = 3;
y(k) = 2 - 0.4 +1.2*y(k-1) -0.72*y(k-2);

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeEntering Commands についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by