MATLAB 圖形名稱

Ammar Ali 2021年10月2日 2021年7月4日
MATLAB 圖形名稱

在本教程中,我們將討論如何使用 MATLAB 中的 figure() 函式為圖形命名和標題。

使用 MATLAB 中的 figure() 函式為圖形命名和標題

如果要在圖形上繪製資料併為圖形指定名稱和標題,可以使用 figure() 函式。你需要使用 figure() 函式的 Name 屬性來定義其名稱。例如,讓我們在圖形上繪製變數併為其指定名稱和標題。請參考下面的程式碼。

t = 1:0.01:2;
x1 = sin(2*pi*t);
figure('Name' , 'Title of the figure')
plot(t,x1)

輸出:

人物名稱

在上面的程式碼中,我們在帶有標題的圖形中繪製了一個正弦波。你可以使用 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