FLHessen: Hessenberg Decomposition of a Matrix.

Description Usage Arguments Value Constraints See Also Examples

Description

FLHessen computes the Hessenberg decomposition for FLMatrix objects.

Usage

1
FLHessen(object, ...)

Arguments

object

is of class FLMatrix

...

any additional arguments

Value

FLHessen returns a list of two components:

P

FLMatrix representing P matrix obtained from Hessenberg decomposition

H

FLMatrix representing H matrix obtained from Hessenberg decomposition

Constraints

Input can only be square matrix with maximum dimension limitations of (700 x 700). If the matrix is non-symmetric FLJordan() will run slower.

See Also

Refer to FLMatrix to know more about FLMatrix.

Examples

1
2
3
4
flmatrix <- FLMatrix(getTestTableName("tblMatrixMulti"), 5,"MATRIX_ID","ROW_ID","COL_ID","CELL_VAL",dims= c(5,5))
resultList <- FLHessen(flmatrix)
resultList$P
resultList$H

Fuzzy-Logix/AdapteR documentation built on May 6, 2019, 5:07 p.m.