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

4 visualizzazioni (ultimi 30 giorni)
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;

Risposta accettata

James Tursa
James Tursa il 1 Set 2020
Modificato: James Tursa il 1 Set 2020
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);

Più risposte (0)

Categorie

Scopri di più su Data Types in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by