MATLAB: What is the code to plot this

#matlab#plotprofuctoffunctionMATLAB

e^(-0.3237t)*cos(3.4836t)

Best Answer

syms t
ezplot(exp(-0.3237*t)*cos(3.4836*t))