Parse error at "t"

3 vues (au cours des 30 derniers jours)
Belle Dionido
Belle Dionido le 4 Déc 2021
Modifié(e) : KSSV le 6 Mar 2022
I am trying to type:
[(d^2)y/d(t^2)] + 3.6(dy/dt) + 3.24y = -10(e^(-1.8t))
but it is saying parse error at 't' on line 5
function dydt = order2(~,y)
dydt = zeros(size(y));
a = 3.6; %coefficient for y; term
b = 3.24; %coefficient for y term
r = -10*e-1.8t; %forcing function
dydt(1) = y(2);
dydt(2) = r -a*y(2) - b*y(1);
  1 commentaire
KSSV
KSSV le 4 Déc 2021
Show us full code which you have tried.

Connectez-vous pour commenter.

Réponse acceptée

Dave B
Dave B le 4 Déc 2021
When you multiply in MATLAB you need a * symbol
r = -10*e-1.8t;
should be
r = -10*e-1.8*t;
  1 commentaire
Steven Lord
Steven Lord le 4 Déc 2021
You will also need to define a variable named t in your function by replacing the ~ in the function signature on the first line with t.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Tags

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by