LUsplit: Function to extract Lower and Upper matrix from LU...

Description Usage Arguments Value Examples

Description

function to extract Lower and Upper matrix from LU decomposition

Usage

1

Arguments

A

: Input matrix

Value

U : upper triangular matrix

L : Lower triangular matrix

Examples

1
2
3
A<-matrix(c(0,-1,1, -1,2,-1,2,-1,0), nrow=3,ncol=3, byrow = TRUE) 
Z<-optR(A, method="LU")
LUsplit(Z$U)

optR documentation built on May 1, 2019, 10:32 p.m.

Related to LUsplit in optR...