1
A
回答
2
如果你想在一個軸上畫出多條曲線,使用hold
:
x = linspace(0,4*pi);
figure; plot(x, sin(x));
hold on;
plot(x, sin(2*x));
hold off;
只要你的狀態hold on
,以plot()
所有呼叫都將在相同的畫直到你致電hold off
。 如果你想有幾個軸在一幅圖,使用subplot()
:
x = linspace(0,4*pi);
figure; % open new figure window
subplot(2, 1, 1); % 2 lines of subplots, one column, use first one
plot(x, sin(x));
subplot(2, 1, 2); % ... use second one
plot(x, sin(2*x));
如果你想有幾個數字窗口,打開每個情節一個新的數字與figure
:
x = linspace(0,4*pi);
figure; % open figure window for first plot
plot(x, sin(x));
figure; % open new figure window for second plot
plot(x, sin(2*x));
請注意,在上面的示例中,plot()
始終使用最後創建的數字窗口。您還可以使用圖柄來任意繪製數字窗口:
x = linspace(0,4*pi);
figure; % open figure window for first plot
fig1 = gca; % get current axes handle
figure; % open new figure window for second plot
fig2 = gca;
plot(fig2, x, sin(x)); % draw into second figure window
plot(fig1, x, sin(2*x)); % draw into first figure window
相關問題
- 1. 在Matlab中繪製球座標系
- 2. MATLAB相機校準座標系
- 3. 在Matlab中使用座標系
- 4. matlab座標
- 5. Matlab調整座標
- 6. D3D11座標系
- 7. Cocos2d座標系
- 8. OpenLayer座標系
- 9. libGDX座標系
- 10. PDFBox - 座標系
- 11. WPF座標系
- 12. MKOverlayView座標系
- 13. Matlab補丁對象座標
- 14. Matlab座標軸縮放
- 15. Matlab獲取點座標
- 16. 更改線座標matlab
- 17. 轉換地圖座標到座標系
- 18. C座標系統#
- 19. iPhone,cocos2d座標系
- 20. 定義座標系
- 21. 座標系,秒圖
- 22. Java JPanel座標系
- 23. QGridLayout座標系統
- 24. CIFaceFeature的座標系
- 25. cocos2d座標系統
- 26. 帶座標和橫座標的座標系
- 27. MATLAB中的光標座標圖
- 28. MATLAB如何讓鼠標點擊座標
- 29. n球座標系到笛卡爾座標系
- 30. 的Android設備轉換座標系「用戶」座標系
您是否在問如何在同一軸上繪製兩個函數?因爲這與新的座標系非常不同。 – prototoast 2012-03-03 00:58:40