LU | R Documentation |
Decompose a square matrix A into the product of a lower triangular matrix L and an upper triangular matrix U.
LU(A)
A |
: an |
a lower triangular matrix L and an upper triangular matrix U so that A = LU.
Kyle Caudle
Randy Hoover
Jackson Cates
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.