How to display single points (-24,9) and (-18,3) in a plot ranging from x-co-ordinates: (-27,27) Y-co-ordinates: (-27,27) by dot?

I want to trace a path of a robot starting from these 2 points. I would like to know how to inculcate previous plot in current

 채택된 답변

Is something like this what you mean?
figure
hold on
plot(-27:27,-27:27)
h = plot([-24 9],[-18 3],'.');
set(h,'MarkerSize',24)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

질문:

2015년 9월 6일

답변:

2015년 9월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by