フィルターのクリア

Draw points in axes matlab

10 ビュー (過去 30 日間)
zeyneb khalili
zeyneb khalili 2018 年 11 月 30 日
コメント済み: Adam Danz 2018 年 11 月 30 日
how can i manually draw points in axes matlab 2009

採用された回答

Adam Danz
Adam Danz 2018 年 11 月 30 日
編集済み: Adam Danz 2018 年 11 月 30 日
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 件のコメント
zeyneb khalili
zeyneb khalili 2018 年 11 月 30 日
Thank you so much @Adam Danz
Adam Danz
Adam Danz 2018 年 11 月 30 日
No problem!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSubplots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by