origin 非线性回归怎么用公式y = 10^5/(A+B/x)拟合?
问题描述:
origin 非线性回归怎么用公式y = 10^5/(A+B/x)拟合?
答
y = 10^5/(A+B/x) 可以化为 y = 10^5 x / (Ax + B)
这个函数形式与 Hyperbola 类型的 HyperbolaMod 函数很相似,其形式为 y = x / (Ax + B)
你可能需要把数据表中的 Y列 数据全除以 10^5,然后再拟合.因为你的公式里有一个常数10^5,而拟合函数中没有这个常数.
origin 7.5 中点击 Analysis — Non-linear Curve Fit — Advanced Fitting Tool,在Categories中选择 Hyperbola,在 Functions 中选择HyperbolaMod,然后就和拟合其他数据的方式一样了.
origin 8.0 以及以上版本,点击 Analysis — Fitting — Non-linear Curve Fit — Open Dialog 选择 Category中的 Hyperbola,在 Function中选择HyperbolaMod,然后就和拟合其他数据的方式一样了.