4

我想改变我的拟合图的宽度:

plot(fit, 'LineWidth', WidthSpec)

不幸的是,当我尝试绘制数据并同时拟合时,例如:

plot(fit, 'LineWidth', WidthSpec, XData, YData)

我收到一条错误消息说

??? Error using ==> cfit.plot at 52
EXCLUDEDATA has greater length than XDATA.

在没有指定宽度的情况下绘制两者

plot(fit, XData, YData) 

工作得很好。

4

2 回答 2

9

尝试存储返回的句柄并使用以下方法调整宽度:

h = plot(fit, ...);
set(h, 'LineWidth',2)
于 2013-05-06T12:28:54.497 回答
0

我有同样的问题,我用过:

h = 图(f);设置(h,'线宽',2)

于 2017-05-19T19:29:52.250 回答