Three-dimensional polynomial regression

I need some pointers to write a polynomial regression subroutine for three-dimensional points (i.e. find coefficients of a polynomial of order X that are set to a certain number of three-dimensional points).

I found the code for two-dimensional polynomial regression, however I need to consider the 3rd dimension.

I am looking for code examples and / or explanations.

+3
source share
1 answer

The multifunctional MATLAB function should do this easily. http://www.mathworks.de/de/help/matlab/ref/polyfit.html

Is MATLAB available?

0
source

Source: https://habr.com/ru/post/1768706/


All Articles