MATLAB 最大化图

Ammar Ali 2021年10月2日 2021年7月4日
MATLAB 最大化图

在本教程中,我们将讨论如何使用 MATLAB 中的 figure() 函数来最大化图形。

使用 MATLAB 中的 figure() 函数最大化图形

如果你想最大化一个图形,你可以使用 figure() 函数。要最大化图形,你需要使用 unitsouterposition 属性。units 属性设置图形单位,而 outerpostion 属性设置图形在屏幕上的外部位置。例如,让我们在最大化的图形上绘制正弦波。请参考下面的代码。

t = 1:0.01:2;
x = sin(2*pi*t);
figure('units','normalized','outerposition',[0 0 1 1])
plot(t,x)

输出:

最大化图形

在上面的代码中,我们在最大化的图形上绘制了一个正弦波。figure() 下的每个 plot() 函数都将在同一图形上绘制数据。如果要在新图形上绘图,则必须使用 figure() 函数创建它。你还可以使用 Name 属性为图形命名。你可以使用 Position 属性更改图形的位置,也可以使用 Units 属性更改图形的单位。查看此链接以获取有关 figure() 函数的更多详细信息。你还可以随时在代码中使用 set() 函数来最大化你的图形。请参考下面的代码。

set(gcf,'units','normalized','outerposition',[0 0 1 1])
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