Need help with difference equation (continuous-time system)

2 views (last 30 days)
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 Comments
Titus Edelhofer
Titus Edelhofer on 2 Nov 2012
Edited: Titus Edelhofer on 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 ...

Sign in to comment.

Accepted Answer

Rajiv Singh
Rajiv Singh on 2 Nov 2012
[y,t] = step(tf(1,[1 5 6]))

More Answers (1)

Titus Edelhofer
Titus Edelhofer on 2 Nov 2012
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

Community Treasure Hunt

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

Start Hunting!