How can I get new plot on the same axes when the user put the new input and presses push button?

1 回表示 (過去 30 日間)
Hello, I am developing a gui in which I have given the push button and some inputs. After pressing push button plot will generate on the axes of the gui but the problem is occurring in the next step when I will again put the new value in the input then the plot is being overwrite by the old plot. How can I remove the old plot after putting the new inputs?
Thanks
  4 件のコメント
Adam
Adam 2017 年 1 月 24 日
If you want to clear all existing plots when you next press the button you need to put
hold( handles.plotAxes, 'off' )
at the start. Or
cla( handles.plotAxes )
VISHWAS CHAVAN
VISHWAS CHAVAN 2017 年 1 月 24 日
Yes .!!! I got the solution thank you sir..

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

採用された回答

Niels
Niels 2017 年 1 月 24 日
if you use
hold on
every next (new) plot will added to the old plot, so both/ all plots will be shown.
to deactivate adding plots use hold off (documentation of hold)
hold off % default option, only need to use if you used hold on before
so that every new plot automatically deletes the old one

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by