Manuals/calci/MATRIXDECOMPOSE

From ZCubes Wiki
Revision as of 03:58, 3 March 2020 by Devika (talk | contribs) (Created page with "<div style="font-size:30px">'''MATRIXDECOMPOSE(a)'''</div><br/> *<math>a</math> is order of the matrix. ==Description== *This function gives the matrix decomposition. *A matr...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
MATRIXDECOMPOSE(a)


  • is order of the matrix.

Description

  • This function gives the matrix decomposition.
  • A matrix decomposition or matrix factorization is a factorization of a matrix into a product of matrices.
  • There are many different matrix decompositions.
  • This is the procedure for decomposing any square matrix in to a product.
  • LU Decomposition,QR Decomposition, Cholesky Decomposition and etc are different types of Decomposition.
  • In LU Decomposition, L stands for Lower Triangular matrix and U stands for Upper Triangular matrix.
  • QR Decomposition is defined by the product of Orthogonal matrix and Upper Triangular matrix.
  • The Cholesky Factorization is only defined for symmetric or Hermitian positive definite matrices.


Example

MATRIXDECOMPOSE(|4|) = 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1

See Also

References