Fitting polynomial surface to a 3D dataframe representing family of curves

大兔子大兔子 提交于 2020-06-29 03:32:14

问题


I have a 3-D dataframe representing family of curves: yi=f(xi) which are also depending on a third variable lets say zi (yi=g(xi,zi)) as shown in the graphic below:

Family Of Curves

The yi data are measurements and each curve is valid on its own.

Now I would like to find out a proper way to fit a plane or surface to this data in order to avoid 2-D bilinear data interpolation.

In general I am trying to do a similar approach as in the link below:

2D polynomial in Python

With the difference that my x and y data do not have the same dimensions. What I am looking for is more a solution for this kind of problem:

2D data fitting Matlab

来源:https://stackoverflow.com/questions/62617150/fitting-polynomial-surface-to-a-3d-dataframe-representing-family-of-curves

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!