if i plot point(x) in a graph how can i remove it from graph

 채택된 답변

Wayne King
Wayne King 2012년 3월 25일

1 개 추천

plot(randn(100,1));
hold on;
h = plot(5,3.5,'k*');
%%%then
reset(h)

댓글 수: 3

mohamed  al-asklany
mohamed al-asklany 2012년 3월 27일
reset(h) clear all graph i want to clear this point only of graph
Ronald Kaptein
Ronald Kaptein 2012년 3월 27일
Use delete(h) instead of reset(h)
mohamed  al-asklany
mohamed al-asklany 2012년 3월 29일
if i want to move line in circular graph?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Phased Array System Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by