What’s wrong?
이전 댓글 표시
what am i doing wrong? plot not showing up. the t&v is in parenthesis

댓글 수: 2
Kevin Barkett
2021년 2월 12일
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
Aurelius Hardy
2021년 2월 12일
답변 (1개)
Blue
2021년 2월 12일
Is this what you want ? Works fine.
t = 0:1/6000:1/30
v = (4*cos((120*pi*t) + (pi/3)))
plot(t,v)
댓글 수: 2
Aurelius Hardy
2021년 2월 12일
Rik
2021년 2월 12일
The code in the answer should not result in an image like you posted. What exact code did you use?
카테고리
도움말 센터 및 File Exchange에서 Image Arithmetic에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
