What’s wrong?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
what am i doing wrong? plot not showing up. the t&v is in parenthesis
2 Kommentare
Kevin Barkett
am 12 Feb. 2021
Hi there,
It looks like the parenthesis of the variable 't' should not encapsulate that first colon, and also the arguments for the plot command should be contained within parenthesis. Try:
t = 0:(1/6000):(1/30);
v = (4*cos((120*pi*t)+(pi/3)));
plot(t,v);
Cheers, Kevin
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!