TradingView
RicardoSantos
1 apr 2022 08:08

FunctionMatrixSolve 

U.S. Dollar Currency IndexTVC

Descrizione

Library "FunctionMatrixSolve"
Matrix Equation solution for Ax = B, finds the value of x.

solve(A, B) Solves Matrix Equation for Ax = B, finds value for x.
  Parameters:
    A: matrix<float>, Square matrix with data values.
    B: matrix<float>, One column matrix with data values.
  Returns: matrix<float> with X, x = A^-1 b, assuming A is square and has full rank
introcs.cs.princeton.edu/java/95linear/Matrix.java.html
Commenti
kakola
Brings me back to high school Algebra II.
slowcoconut
This is an incredible help, thank you! The Ax=B method is really useful and I'll be incorporating it into a calculator of mine, should be up soon.
Altro