MATLAB: How to write the equation of this graph

Best Answer

t = 0:0.01:2;
y = exp(-t).*(sin(20*t).^3);
plot(t,y)
Related Question