用plot画好以后,在图像属性中修改坐标属性
!
例如:
t=[0:0.1:3*pi]';
y=exp(-1/3*t).*sin(2*t+3);
y1=exp(-1/3*t);
plot(t,y,'b:*');
xlabel('t');ylabel('y');
hold on
plot(t,y1,'r-');
title('逼近');
legend('y=exp(-1/3*t).*sin(2*t+3)','y1=exp(-1/3*t)',2);
axis(square);
grid on
hold off;