Accepted Answer

Adam Danz
Adam Danz on 23 Aug 2021
Edited: Adam Danz on 27 Aug 2021
That's because there's only 1 point and it takes >=2 points to form a line. By default, plot() does not show markers, only lines.
The reason there is only 1 point is because there is only 1 value in t:
t=12:0.01:12
t = 12
x=sin(t);
plot(t,x, 'o-')

2 Comments

thanks a lot adam i am student currently studying signal system and trying to understand matlab
Happy to help.

Sign in to comment.

More Answers (0)

Categories

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!