想让我的绘制的图中的圆圈,点以及五角星的尺寸和线粗变大,plot中要如何控制附上代码
plot(YL(1,:),YL(2,:),'ro');hold on
plot(YM(1,:),YM(2,:),'k.','Linewidth',5);hold on
plot(xvs(1),xvs(2),'bp')

 채택된 답변

0 개 추천

x = -pi:pi/10:pi;
y = tan(sin(x)) - sin(tan(x));
figure
plot(x,y,'--gs',...
    'LineWidth',2,...%控制画出来的虚线宽度
    'MarkerSize',10,...%方形点大小
    'MarkerEdgeColor','b',...%方形点边界颜色
    'MarkerFaceColor',[0.5,0.5,0.5])%方形点填充颜色

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!