在 Matlab 中建立新圖形

Ammar Ali 2021年11月29日 2021年7月4日
在 Matlab 中建立新圖形

在本教程中,我們將討論如何使用 MATLAB 中的 figure() 函式建立一個新圖形。

使用 MATLAB 中的 figure() 函式建立一個新圖窗

如果要在多個圖形上繪製資料,可以使用 figure() 函式建立一個新圖形並在那裡繪製資料。要使用 figure() 繪製多個圖形,你只需在此函式中定義圖形的編號。例如,讓我們在兩個不同的圖形上繪製兩個變數。請參考下面的程式碼。

t = 1:0.01:10;
x1 = sin(2*pi*t);
x2 = sin(2*pi*t - 10);
figure(1)
plot(t,x1,'Color','r')
figure(2)
plot(t,x2,'Color','g')

輸出:

matlab 建立新圖形

在上面的程式碼中,我們在圖 1 中繪製了一個紅色的正弦波,在圖 2 中繪製了一個綠色的正弦波。figure() 下的每個 plot() 函式都會在同一個圖形上繪製資料。如果要在新圖形上繪圖,則必須使用 figure() 函式建立它。你還可以使用 Name 屬性為圖形命名。你可以使用 Position 屬性更改圖形的位置,也可以使用 Units 屬性更改圖形的單位。檢視此連結以獲取有關 figure() 函式的更多詳細資訊。

Author: Ammar Ali
Ammar Ali avatar Ammar Ali avatar

Hello! I am Ammar Ali, a programmer here to learn from experience, people, and docs, and create interesting and useful programming content. I mostly create content about Python, Matlab, and Microcontrollers like Arduino and PIC.

LinkedIn Facebook

相關文章 - MATLAB Figure