Use matlab to solve the differential equation and draw the graphic solution Y = solve ('d3y = d2y-dy-y + T ^ 2 ','y (0) = 0','dy (0) = 1 ','d2y (0) = - 1') how to draw a graph after solving this problem!

Use matlab to solve the differential equation and draw the graphic solution Y = solve ('d3y = d2y-dy-y + T ^ 2 ','y (0) = 0','dy (0) = 1 ','d2y (0) = - 1') how to draw a graph after solving this problem!

y=dsolve('D3y=D2y-Dy-y+t^2','y(0)=0','Dy(0)=1','D2y(0)=-1');
TT = linspace (0,101001);% means t from 0 to 10
for i=1:1001
t=tt(i);
yy(i)=eval(y);
end
plot(tt,yy)