Matlab中如何自定义legend生成的图例中的标记点?

2024-12-31 20:34:00
推荐回答(1个)
回答1:

x=-pi:pi/10:pi;
y=sin(x);
plot(x,y,'-o')
legend('x2')
这样画出来的表示点就是你要的那种。
试试看