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 interfaceDenseMatrixAn abstract interface of dense matrix.Classes in smile.math.matrix that implement Matrix Modifier and Type Class Description classJMatrixA 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 MatrixMatrix. aat()Returns A * A'MatrixMatrix. ata()Returns A' * AMatrixMatrix. transpose()Returns the matrix transpose.Methods in smile.math.matrix with parameters of type Matrix Modifier and Type Method Description static EVDLanczos. eigen(Matrix A, int k)Find k largest approximate eigen pairs of a symmetric matrix by the Lanczos algorithm.static EVDLanczos. eigen(Matrix A, int k, double kappa, int maxIter)Find k largest approximate eigen pairs of a symmetric matrix by the Lanczos algorithm.
-