所用函数
plot
set
boxoff
legend
hold on
ezplot
axis
xlabel
ylabel
text
linespace
属性: fontname,fontsize,fontweight,lineweight
线性,字体属性
以及标注
代码:
plot(x,y1,'k-*');
hold on
plot(x,y2,'c:o');
hold on
plot(x,y3,'b--*');
hold on
plot(x,y4,'r-o');
hold on
plot(x,y5,'g:+');
hold on
plot(x,y6,'m-o');
hold on
plot(x,y7,'y-*');
legend 自然模拟法 递归模拟法 递增进制数 递减进制数 邻位互换 循环左移 数值分析法
legend('boxoff');
ylabel('全排列n所需要时间的log10值(单位:s)');
title('全排列性能比较');
xlabel('n的取值');
心形图:
ezplot('(x^2+y^2-1)^3-x^2*y^3',[-3 3 -3 3]);