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

1 次查看(过去 30 天)
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 CenterFile Exchange 中查找有关 Interactive 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