MATLAB: Hello I want to show at matlab abaout the sinusoidal form , How to write the this code.Example ,I want to show V(t)=300sin(100*pi*t)’s sinusoidal form at matlab

formsinusoidal

Hello I want to show at matlab abaout the sinusoidal form.How can I write the this code.Example: I want to show V(t)=300sin(100*pi*t)'s sinusoidal form at matlabasda

Best Answer

syms t
V(t)=300*sin(100*pi*t)
fplot(V,[0,1])