MATLAB: Will I get below error? What might be the error

kplot=3*sin(2*pi*t+pi/2

plot=3*sin(2*pi*t+pi/2,'.-k');
While I was trying to run the code it is showing error like too many input argument using sin.

Best Answer

plot(3*sin(2*pi*t+pi/2),'.-k')