채택된 답변

Adam Danz
Adam Danz 2018년 11월 30일
편집: Adam Danz 2018년 11월 30일

0 개 추천

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개)

카테고리

태그

질문:

2018년 11월 30일

댓글:

2018년 11월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by