Azzera filtri
Azzera filtri

Draw points in axes matlab

10 visualizzazioni (ultimi 30 giorni)
zeyneb khalili
zeyneb khalili il 30 Nov 2018
Commentato: Adam Danz il 30 Nov 2018
how can i manually draw points in axes matlab 2009

Risposta accettata

Adam Danz
Adam Danz il 30 Nov 2018
Modificato: Adam Danz il 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 Commenti
zeyneb khalili
zeyneb khalili il 30 Nov 2018
Thank you so much @Adam Danz
Adam Danz
Adam Danz il 30 Nov 2018
No problem!

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by