LU | R Documentation |
Decomposes a a matrix into the product of a lower triangular matrix and an upper triangular matrix.
LU(A)
A |
Complex, square matrix of complex numbers |
A lower triangular matrix L and an upper triangular matrix U so that A=LU
Kyle Caudle
Randy Hoover
Jackson Cates
Everett Sandbo
Stewart, G. W. (1998). Matrix algorithms: volume 1: basic decompositions. Society for Industrial and Applied Mathematics.
indices <- c(2,3,4)
z <- complex(real = rnorm(16), imag = rnorm(16))
A <- matrix(z,nrow=4)
LU(A)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.