Total Solution Differential Equation

16 vues (au cours des 30 derniers jours)
MathWizardry
MathWizardry le 2 Sep 2021
Modifié(e) : Wan Ji le 2 Sep 2021
Hello!
I am trying to use the code I used. Can I ask for a second opinion regarding the codes that I used if its correct or wrong. This is to solve Total Solution Differential Equation using Matlab.
Matlab codes:
>> syms s t
>> dsolve('D2y=-12*Dy-32*y+32','y(0)=0','Dy(0)=0','t')

Réponses (1)

Wan Ji
Wan Ji le 2 Sep 2021
Modifié(e) : Wan Ji le 2 Sep 2021
If u(t) = 1, then your solution is right.
If it is a function with respect to time, then your solution is wrong.
Exact code:
syms y(t) u(t) t
dy = diff(y,t,1);
d2y = diff(y,t,2);
eq = d2y + 12*dy + 32*y - 32*u;
conds = [y(0)==0; dy(0) ==0];
dsolve(eq, conds)

Catégories

En savoir plus sur Function Creation dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by