matlab plot线型加粗
时间: 2023-09-22 14:14:33 浏览: 194
matlab-plot-big:使大型MATLAB线图更快
要将MATLAB plot的线型加粗,你可以使用plot函数中的'LineWidth'属性参数。例如,如果要将线型加粗为2个像素,请在plot函数中添加'LineWidth'属性参数,如下所示:
plot(x,y,'LineWidth',2)
其中,x和y是要绘制的数据,'LineWidth'指定要使用的线宽。你可以根据需要调整线宽的大小。
阅读全文