LU: LU Decomposition of a Complex Matrix

LUR Documentation

LU Decomposition of a Complex Matrix

Description

Decompose matrix A into the product of a lower triangular matrix L and an upper triangular matrix U.

Usage

LU(A)

Arguments

A

: an n x n matrix

Value

a lower triangular matrix L and an upper triangular matrix U so that MATRIX = LU.

Author(s)

Kyle Caudle kyle.caudle@sdsmt.edu

Examples

z <- complex(real = rnorm(16), imag = rnorm(16))
A <- matrix(z,nrow=4)
LU(A)

rTensor2 documentation built on Aug. 14, 2022, 9:05 a.m.

Related to LU in rTensor2...