powered by
Decompose a matrix into lower- and upper-triangular matrices
lumatrix(m)
a matrix
list with matrices L and U representing the LU decomposition
lumatrix decomposes the matrix m into the LU decomposition, such that m == L
lumatrix
m
Other linear: choleskymatrix, detmatrix, gdls, invmatrix, iterativematrix, refmatrix, rowops, tridiagmatrix, vecnorm
choleskymatrix
detmatrix
gdls
invmatrix
iterativematrix
refmatrix
rowops
tridiagmatrix
vecnorm
# NOT RUN { A <- matrix(c(1, 2, -7, -1, -1, 1, 2, 1, 5), 3) lumatrix(A) # }
Run the code above in your browser using DataLab