MATLAB画图全屏展示

clear
clc
close all
x=0:0.1:500;
y=exp(0.005*x).*sin(x);
plot(x,y);
xlabel('x');
ylabel('y');
legend('****')
title('****')
set(gcf,'Position',get(0,'Screensize')); %将图像全屏显示

你可能感兴趣的:(matlab)