我想显示在我的数值算法中插入每个近似点后产生的错误。这是我得到的情节:
我不想显示这样的错误,因为不清楚插入每个点后它的值如何变化。我想以这种方式绘制错误(图片取自论文):
换句话说,我希望 Y 轴包含从 10^(-1) 到 10^(-6) 的值这是我使用的代码:
rms_res = norm(residual)/sqrt(lres);
errors = [errors rms_res];
% some code for other computation
% plot
plot(coord_ctrs, (errors), '.');
line(coord_ctrs, (errors));
我怎样才能做到这一点 ?谢谢你。