Clear Filters
Clear Filters

Draw points in axes matlab

10 views (last 30 days)
zeyneb khalili
zeyneb khalili on 30 Nov 2018
Commented: Adam Danz on 30 Nov 2018
how can i manually draw points in axes matlab 2009

Accepted Answer

Adam Danz
Adam Danz on 30 Nov 2018
Edited: Adam Danz on 30 Nov 2018
It depends what you mean by "manually".
Mouse clicks
Use getpts().
figure;
axh = axes;
[x,y] = getpts(axh); %Click on axis; Enter/Return to finish.
plot(axh, x, y, 'kx')
Command line
From the command line;
plot(0.5, 0.2, 'kx') %plots a black x at (0.5, 0.2).
  2 Comments
zeyneb khalili
zeyneb khalili on 30 Nov 2018
Thank you so much @Adam Danz
Adam Danz
Adam Danz on 30 Nov 2018
No problem!

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!