RicardoSantos

FunctionPolynomialFit

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/wik...olynomial_regression
www.bragitoff.com/20...l-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 * x**deg + ... + p

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.
Pineライブラリ

TradingViewの精神に則り、作者はPineコードをオープンソースライブラリとして公開し、コミュニティの他のPineプログラマーが再利用できるようにしました。作者に敬意を表します!このライブラリを個人的に、または他のオープンソースの投稿で使用することができますが、、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

このライブラリを使用したいですか?

以下の行をコピーして、スクリプト内に貼り付けてください。