Uses of Interface
smile.math.matrix.Matrix
-
Packages that use Matrix Package Description smile.math.matrix -
-
Uses of Matrix in smile.math.matrix
Subinterfaces of Matrix in smile.math.matrix Modifier and Type Interface Description interface
DenseMatrix
An abstract interface of dense matrix.Classes in smile.math.matrix that implement Matrix Modifier and Type Class Description class
JMatrix
A pure Java implementation of DenseMatrix whose data is stored in a single 1D array of doubles in column major order.Methods in smile.math.matrix that return Matrix Modifier and Type Method Description Matrix
Matrix. aat()
Returns A * A'Matrix
Matrix. ata()
Returns A' * AMatrix
Matrix. transpose()
Returns the matrix transpose.Methods in smile.math.matrix with parameters of type Matrix Modifier and Type Method Description static EVD
Lanczos. eigen(Matrix A, int k)
Find k largest approximate eigen pairs of a symmetric matrix by the Lanczos algorithm.static EVD
Lanczos. eigen(Matrix A, int k, double kappa, int maxIter)
Find k largest approximate eigen pairs of a symmetric matrix by the Lanczos algorithm.
-