【MATLAB函数errorbar()】沿曲线绘制误差线
句法
errorbar(y, err)// It generates a line plot of the data in y and draw a vertical error bar at each data point. The values in err determines the lengths of each error bar above and below the data point, so the total error bar lengths are double the err values.errorbar(x, y, err)// It plots y versus x and draws a vertical error bar at each data point.errorbar(x, y, neg, pos)// It draws a vertical error bar at each data point, where neg determine the length below the data point, and pos determines the length above the data point, respectively.errorbar(..., LineSpec)//It sets the line style, marker symbol, and color. h = errorbar(...)// It returns handles to the errorbarseries objects created. errorbar develops one object for vector input arguments and one object per column for matrix input arguments.
例子
fapproax=x-x^3/3!, 0≤x≤2error=f approax-sin?xx=0:.1:2;
apprx2=x-x.^3/6;
er=apprx2-sin(x);
errorbar(x, apprx2, er)
输出
文章图片
推荐阅读
- MATLAB函数barh()
- MATLAB函数plotyy()
- MATLAB 函数fill()
- MATLAB函数Bar()
- MATLAB绘图操作详解
- MATLAB 2D极坐标绘图Plots()
- MATLAB 函数Semilogy()
- MATLAB 函数loglog()
- MATLAB 2D函数Semilogx()