计算拟合函数的面积以与结果进行比较 - Mathematica

发布于 2024-12-26 08:02:01 字数 217 浏览 1 评论 0原文

哈!
我花了很多时间阅读 Mathematica 的文档中心和 stackoverflow(以及其他网站),但我没有找到我的问题的任何答案:How in Mathematica I can Compare fields (quantitatively) of function (to be精确 - 结果)及其拟合。我想对我的适合程度进行一些数值估计。功能当然是3D的。
干杯,
约翰

H!
I've spent a lot of time reading Mathematica's Document Center and stackoverflow (among other sites), but I haven't found any answer to my question: How in Mathematica I can compare areas (quantitatively) of function (to be precise - results) and its fit. I'd like to get some numerical estimation of my fit. The function of course is in 3D.
Cheers,
John

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美羊羊 2025-01-02 08:02:01

如果实际目标是估计您的拟合程度,那么您不需要计算任何“面积” - Mathematica 内置了由 LinearModelFit[...] 和 NonlinearModelFit[...] 提供的分析。让我们构建一些分散在高斯曲面周围的数据集:

data = MapThread[{#1[[1]], #1[[2]], 
 1.2 Exp[-34 ((#1 - .56).(#1 - .56))] + #2} &, {RandomReal[
 1, {100, 2}], RandomReal[{-.1, .1}, 100]}];

引入高斯曲面模型来拟合这些数据:

model = a Exp[-b ((x - x0)^2 + (y - y0)^2)];

现在,进行非线性回归:

    nlm = NonlinearModelFit[data, 
   model, {a, b, {x0, .5}, {y0, .6}}, {x, y}];

获取并绘制最佳拟合:

    Show[Plot3D[nlm["BestFit"], {x, 0, 1}, {y, 0, 1}, PlotRange -> All, 
  PlotStyle -> Opacity[.5], MeshStyle -> Opacity[.5], Mesh -> 25], 
 ListPointPlot3D[data, 
  PlotStyle -> Directive[PointSize[Medium], Red]]]

Plot

函数 nlm[…] 包含大量信息:

nlm["Properties"]

Properties

以下是与您的请求相关的一些属性:

nlm["ParameterTable"]

参数表

nlm["ANOVATable"]

方差分析表

谢谢,
维塔利

If the actual goal is to estimate how good your fit is, then you do not need to calculate any "areas" - Mathematica has built in analysis offered by LinearModelFit[...] and NonlinearModelFit[...]. Let's make up some dataset scattered around a Gaussian surface:

data = MapThread[{#1[[1]], #1[[2]], 
 1.2 Exp[-34 ((#1 - .56).(#1 - .56))] + #2} &, {RandomReal[
 1, {100, 2}], RandomReal[{-.1, .1}, 100]}];

Introduce a Gaussian surface model to fit these data:

model = a Exp[-b ((x - x0)^2 + (y - y0)^2)];

Now, do the nonlinear regression:

    nlm = NonlinearModelFit[data, 
   model, {a, b, {x0, .5}, {y0, .6}}, {x, y}];

Obtain and plot the best fit:

    Show[Plot3D[nlm["BestFit"], {x, 0, 1}, {y, 0, 1}, PlotRange -> All, 
  PlotStyle -> Opacity[.5], MeshStyle -> Opacity[.5], Mesh -> 25], 
 ListPointPlot3D[data, 
  PlotStyle -> Directive[PointSize[Medium], Red]]]

Plot

The function nlm[…] contains a lot of information:

nlm["Properties"]

Properties

Here are few properties relevant to your request:

nlm["ParameterTable"]

Parameter Table

nlm["ANOVATable"]

ANOVA Table

Thanks,
Vitaliy

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文