2016-05-31 140 views
1

我会问你的善意援助。我目前正在试图绘制我生成的一组点的最佳曲线(它可能是指数,对数,双曲线等)。到目前为止,我一直在使用这种类型的代码:在Mathematica中绘制最佳曲线

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]}]] 

我知道,如果我改变了加盟 - >为“True”我会得到一个连线点,但是我希望有最好的曲线不是加入点的线。

谢谢!

+0

你有没有试过看mathematica文档? https://reference.wolfram.com/language/tutorial/StatisticalModelAnalysis.html – agentp

回答