试试这样,当然也可以用ezplot来画。
clear all;clc;
x=-4:0.1:4;
y=3*x+sin(x)-exp(x);
h=plot(x,y);grid on;
set(h,'Color','m','Linewidth',3,'Linestyle','-.');
text(-2,-10,'y=3*x+sin(x)-exp(x)','Fontsize',15);
试试这样,当然也可以用ezplot来画。
clear all;clc;
x=-4:0.1:4;
y=3*x+sin(x)-exp(x);
h=plot(x,y);grid on;
set(h,'Color','m','Linewidth',3,'Linestyle','-.');
text(-2,-10,'y=3*x+sin(x)-exp(x)','Fontsize',15);