Library "FunctionPolynomialFit" Performs Polynomial Regression fit to data. In statistics, polynomial regression is a form of regression analysis in which the relationship between the independent variable x and the dependent variable y is modelled as an nth degree polynomial in x. reference: en.wikipedia.org/wiki/Polynomial_regression bragitoff.com/2018/06/polynomial-fitting-c-program/
gauss_elimination(A, m, n) Perform Gauss-Elimination and returns the Upper triangular matrix and solution of equations. Parameters: A: float matrix, data samples. m: int, defval=na, number of rows. n: int, defval=na, number of columns. Returns: float array with coefficients.
polyfit(X, Y, degree) Fits a polynomial of a degree to (x, y) points. Parameters: X: float array, data sample x point. Y: float array, data sample y point. degree: int, defval=2, degree of the polynomial. Returns: float array with coefficients. note: p(x) = p[0] * x**deg + ... + p[deg]
interpolate(coeffs, x) interpolate the y position at the provided x. Parameters: coeffs: float array, coefficients of the polynomial. x: float, position x to estimate y. Returns: float.
진정한 TradingView 정신에 따라, 저자는 이 파인 코드를 다른 파인 프로그래머들이 재사용할 수 있도록 오픈 소스 라이브러리로 공개했습니다. 저자에게 박수를 보냅니다! 이 라이브러리는 개인적으로 사용하거나 다른 오픈 소스 출판물에서 사용할 수 있지만, 이 코드를 출판물에서 재사용하는 것은 하우스 룰에 의해 관리됩니다.