poster
2019-12-10, 16:49
通常,当我在MATLAB中进行 (http://en.wikipedia.org/wiki/MATLAB)绘制时,它总是绘制在同一图形上。如何使它画一个新的数字?
我知道它很基本,但是我无法使用Google搜索找到它。
回答:
figure; plot(something); 要么
figure(2); plot(something); ... figure(3); plot(something else); ... 等等
更多&回答... (https://stackoverflow.com/questions/433326)
我知道它很基本,但是我无法使用Google搜索找到它。
回答:
figure; plot(something); 要么
figure(2); plot(something); ... figure(3); plot(something else); ... 等等
更多&回答... (https://stackoverflow.com/questions/433326)