필터 지우기
필터 지우기

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 CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by