Uses of Class
no.uib.cipr.matrix.DenseMatrix
-
Packages that use DenseMatrix Package Description no.uib.cipr.matrix -
-
Uses of DenseMatrix in no.uib.cipr.matrix
Methods in no.uib.cipr.matrix that return DenseMatrix Modifier and Type Method Description DenseMatrix
DenseMatrix. copy()
DenseMatrix
EVD. getLeftEigenvectors()
Gets the left eigenvectors, if availableDenseMatrix
DenseLU. getLU()
Returns the decomposition matrixDenseMatrix
QRP. getQ()
Returns the orthogonal matrixDenseMatrix
QRP. getR()
Returns the upper triangular factorDenseMatrix
EVD. getRightEigenvectors()
Gets the right eigenvectors, if availableDenseMatrix
SVD. getU()
Returns the left singular vectors, column-wise.DenseMatrix
SVD. getVt()
Returns the right singular vectors, row-wise.static DenseMatrix
Matrices. identity(int size)
Returns the identity matrix of the given sizeDenseMatrix
BandCholesky. solve(DenseMatrix B)
ComputesA\B
, overwritingB
DenseMatrix
BandLU. solve(DenseMatrix B)
ComputesA\B
, overwritingB
DenseMatrix
DenseCholesky. solve(DenseMatrix B)
Solves forB
, overwriting it on returnDenseMatrix
DenseLU. solve(DenseMatrix B)
ComputesA\B
, overwritingB
DenseMatrix
PackCholesky. solve(DenseMatrix B)
Solves forB
, overwriting it on returnDenseMatrix
BandLU. transSolve(DenseMatrix B)
ComputesAT\B
, overwritingB
DenseMatrix
DenseLU. transSolve(DenseMatrix B)
ComputesAT\B
, overwritingB
Methods in no.uib.cipr.matrix with parameters of type DenseMatrix Modifier and Type Method Description DenseLU
DenseLU. factor(DenseMatrix A)
Creates an LU decomposition of the given matrixEVD
EVD. factor(DenseMatrix A)
Computes the eigenvalue decomposition of the given matrixLQ
LQ. factor(DenseMatrix A)
QL
QL. factor(DenseMatrix A)
QR
QR. factor(DenseMatrix A)
RQ
RQ. factor(DenseMatrix A)
SVD
SVD. factor(DenseMatrix A)
Computes an SVDDenseMatrix
BandCholesky. solve(DenseMatrix B)
ComputesA\B
, overwritingB
DenseMatrix
BandLU. solve(DenseMatrix B)
ComputesA\B
, overwritingB
DenseMatrix
DenseCholesky. solve(DenseMatrix B)
Solves forB
, overwriting it on returnDenseMatrix
DenseLU. solve(DenseMatrix B)
ComputesA\B
, overwritingB
DenseMatrix
PackCholesky. solve(DenseMatrix B)
Solves forB
, overwriting it on returnDenseMatrix
BandLU. transSolve(DenseMatrix B)
ComputesAT\B
, overwritingB
DenseMatrix
DenseLU. transSolve(DenseMatrix B)
ComputesAT\B
, overwritingB
-