在Mathematica中绘制最佳曲线

时间:2016-05-31 09:47:46

标签: plot graph wolfram-mathematica mathematica-8

我会请求你的帮助。我目前正在尝试为我生成的一组点绘制最佳曲线(可能是指数,对数,双曲线等)。到目前为止,我一直在使用这种类型的代码:

Show[ListPlot[
  L, {PlotRange -> {{0, 3}, {0, 50}}, PlotStyle -> {PointSize[Tiny]}, 
   Frame -> True, 
   FrameStyle -> Directive[Thickness -> Tiny, FontSize -> 12], 
   AspectRatio -> 0.8, GridLines -> Automatic, Joined -> {False}, 
   TicksStyle -> Directive[1]}]]

我知道如果我改变了加入 - > to" True"我会得到一条连接点的线,但是我希望得到最好的曲线而不是连接点的线。

谢谢!

1 个答案:

答案 0 :(得分:1)

Mathematica 中有多种方法可以做到这一点。例如,您可以使用Interpolation功能或ListInterpolation。同样提到agentp,您可以使用模型拟合函数,例如LinearModelFitGeneralizedLinearModelFitNonlinearModelFit

有关详细信息,请参阅链接的文档。