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

3 次查看(过去 30 天)
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
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 个)

类别

Help CenterFile Exchange 中查找有关 Data Types 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by