How can I update 2 separate figures without opening new figures?

3 ビュー (過去 30 日間)
Keith Grey
Keith Grey 2020 年 6 月 18 日
回答済み: madhan ravi 2020 年 6 月 18 日
When plotting 1 figure, hold on works fine. With two figures, it keeps opening a new window. How can I make 2 figures, and update lines on them?
FREQ = 1:100;
figure()
plot(min(FREQ):max(FREQ), 20*log10(Z))
hold on
figure()
plot(min(FREQ):max(FREQ), 20*log10(ZC))
hold on

採用された回答

madhan ravi
madhan ravi 2020 年 6 月 18 日
figure(1)
...
figure(2)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

製品


リリース

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by