level 2
有一组数据,以及这一组数据的误差。请问怎么在拟合曲线同时加上误差棒???
2017年12月13日 12点12分
1
level 10
Needs["ErrorBarPlots`"]
ErrorListPlot[Table[{i, RandomReal[0.5]}, {i, 10}]]
最后用Show
2017年12月14日 03点12分
2
level 3
data := RandomReal[{0, 0.1}];
Show[ListPlot[Table[Around[1/n, data], {n, 10}]],
Plot[1/x, {x, 0, 10}]]
2020年06月05日 12点06分
3