Filter löschen
Filter löschen

Draw points in axes matlab

10 Ansichten (letzte 30 Tage)
zeyneb khalili
zeyneb khalili am 30 Nov. 2018
Kommentiert: Adam Danz am 30 Nov. 2018
how can i manually draw points in axes matlab 2009

Akzeptierte Antwort

Adam Danz
Adam Danz am 30 Nov. 2018
Bearbeitet: Adam Danz am 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 Kommentare
zeyneb khalili
zeyneb khalili am 30 Nov. 2018
Thank you so much @Adam Danz
Adam Danz
Adam Danz am 30 Nov. 2018
No problem!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by