api / koma.matrix.mtj.backend / no.uib.cipr.matrix.DenseMatrix
Extensions for no.uib.cipr.matrix.DenseMatrix
Name | Summary |
---|---|
LU | fun DenseMatrix.LU(): Triple <DenseMatrix, DenseMatrix, DenseMatrix> |
QR | fun DenseMatrix.QR(): Pair <DenseMatrix, DenseMatrix> |
chol | fun DenseMatrix.chol(): LowerTriangDenseMatrix |
det | fun DenseMatrix.det(): Double |
diag | fun DenseMatrix.diag(): DenseMatrix |
div | operator fun DenseMatrix.div(other: Int ): DenseMatrix operator fun DenseMatrix.div(other: Double ): DenseMatrix |
eig | fun DenseMatrix.eig(): EVD |
get | operator fun DenseMatrix.get(i: Int ): Double |
inv | fun DenseMatrix.inv(): DenseMatrix |
mapMat | fun DenseMatrix.mapMat(f: ( Double ) -> Double ): DenseMatrix |
minus | operator fun DenseMatrix.minus(other: DenseMatrix): DenseMatrix |
minusElement | fun DenseMatrix.minusElement(other: Double ): DenseMatrix fun DenseMatrix.minusElement(other: Int ): DenseMatrix |
plusElement | fun DenseMatrix.plusElement(other: Int ): DenseMatrix fun DenseMatrix.plusElement(other: Double ): DenseMatrix |
plusMatrix | fun DenseMatrix.plusMatrix(other: DenseMatrix): DenseMatrix |
powElement | fun DenseMatrix.powElement(other: Int ): DenseMatrix fun DenseMatrix.powElement(other: Double ): DenseMatrix |
prod | fun DenseMatrix.prod(): Double |
rem | operator fun DenseMatrix.rem(other: DenseMatrix): DenseMatrix |
set | operator fun DenseMatrix.set(i: Int , v: Int ): Unit operator fun DenseMatrix.set(i: Int , j: Int , v: Int ): Unit operator fun DenseMatrix.set(i: Int , v: Double ): Unit |
svd | fun DenseMatrix.svd(): SVD |
times | operator fun DenseMatrix.times(other: DenseMatrix): DenseMatrix operator fun DenseMatrix.times(other: Int ): DenseMatrix operator fun DenseMatrix.times(other: Double ): DenseMatrix |
unaryMinus | operator fun DenseMatrix.unaryMinus(): DenseMatrix |