MATLAB: I can’t plot 2nd order differential equation

differential equationsodeplotplotting

I can't plot 2nd order differential equation.
syms x(t); Dx = diff(x); Dx2 = diff(x,2); x(t) = dsolve(Dx2+(5*Dx)+(6*x)==100,x(0)==0,Dx(0)==0)

Best Answer

I can!
Try this:
syms x(t);
Dx = diff(x);
Dx2 = diff(x,2);
x(t) = dsolve(Dx2+(5*Dx)+(6*x)==100,x(0)==0,Dx(0)==0)
figure(1)
fplot(x, [0 10])
axis([xlim 0 17])
grid