Need help with difference equation (continuous-time system)
Afficher commentaires plus anciens
Hello, How to solve the equation in Matlab?
y''(t)+5*y'(t)+6y(t)= u(t)
y'(0)=y(0)=0
u(t) = 1(t) or u(t)= t*1(t)
I found the solution by hand through the transformation of Laplace, it came like this:
y(t)= 1/6 - exp(-2*t)/2 + exp (-3*t) for u(t)=1(t)
2 commentaires
Azzi Abdelmalek
le 2 Nov 2012
Do you need a numeric solution or symbolic?
Titus Edelhofer
le 2 Nov 2012
Modifié(e) : Titus Edelhofer
le 2 Nov 2012
Since he found the solution by hand, I guess the numerical solution is searched for ...? BTW you want to solver a differential equation, not a difference equation ...
Réponse acceptée
Plus de réponses (1)
Titus Edelhofer
le 2 Nov 2012
0 votes
Hi,
you will need to convert your second order problem to a system of first order equations (by setting y1=y, y2=y'). Then use ode45 to solve the system.
Titus
Catégories
En savoir plus sur Symbolic Math Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!