powered by
Decomposes a a matrix into the product of a lower triangular matrix and an upper triangular matrix.
LU(A)
A lower triangular matrix L and an upper triangular matrix U so that A=LU
Complex, square matrix of complex numbers
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)
Run the code above in your browser using DataLab