L=linspace(-1.4,1.4,10^3);
Q=linspace(-5,5,10^3);
[LL,QQ]=meshgrid(L,Q);
Z=LL.^8.*sin(QQ).^8+2.*LL.^6.*sin(QQ).^6-6.*LL.^6.*sin(QQ).^4-6.*LL.^4.*sin(QQ).^4+3.*LL.^4.*sin(QQ).^2+9.*LL.^4+11.*LL.^2.*sin(QQ).^2-15.*LL.^2+1;
figure
[C,h]=contour(LL,QQ,Z,[0,0]);
set(h,'Color','k','LineWidth',1.5);
contour返回的第一个参数是等值线的数据,第二个参数才是画图的句柄
所以只要多给一个参数contour返回就可以利用h设置曲线颜色和粗细了