This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class_name Trail3D extends MeshInstance3D | |
| """ | |
| Original Author: Oussama BOUKHELF | |
| License: MIT | |
| Version: 0.1 | |
| Email: [email protected] | |
| Description: Advanced 2D/3D Trail system. | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef _POLYNOMIAL_REGRESSION_H | |
| #define _POLYNOMIAL_REGRESSION_H __POLYNOMIAL_REGRESSION_H | |
| /** | |
| * PURPOSE: | |
| * | |
| * Polynomial Regression aims to fit a non-linear relationship to a set of | |
| * points. It approximates this by solving a series of linear equations using | |
| * a least-squares approach. | |
| * | |
| * We can model the expected value y as an nth degree polynomial, yielding |