api / koma.matrix.jblas.backend / org.jblas.DoubleMatrix
Extensions for org.jblas.DoubleMatrix
Name | Summary |
---|---|
LU | fun DoubleMatrix.LU(): LUDecomposition<DoubleMatrix> |
QR | fun DoubleMatrix.QR(): QRDecomposition<DoubleMatrix> |
T | val DoubleMatrix.T: DoubleMatrix |
chol | fun DoubleMatrix.chol(): DoubleMatrix |
det | fun DoubleMatrix.det(): Double |
eigVals | fun DoubleMatrix.eigVals(): ComplexDoubleMatrix |
eigVectors | fun DoubleMatrix.eigVectors(): Array <ComplexDoubleMatrix> |
expm | fun DoubleMatrix.expm(): DoubleMatrix |
inv | fun DoubleMatrix.inv(): DoubleMatrix |
mapMat | fun DoubleMatrix.mapMat(f: ( Double ) -> Double ): DoubleMatrix |
minus | operator fun DoubleMatrix.minus(other: DoubleMatrix): DoubleMatrix |
plus | operator fun DoubleMatrix.plus(other: DoubleMatrix): DoubleMatrix |
plusElement | fun DoubleMatrix.plusElement(other: Int ): DoubleMatrix fun DoubleMatrix.plusElement(other: Double ): DoubleMatrix |
powElement | fun DoubleMatrix.powElement(other: Int ): DoubleMatrix fun DoubleMatrix.powElement(other: Double ): DoubleMatrix |
rem | operator fun DoubleMatrix.rem(other: DoubleMatrix): DoubleMatrix |
repr | fun DoubleMatrix.repr(): String |
set | operator fun DoubleMatrix.set(i: Int , v: Double ): DoubleMatrix operator fun DoubleMatrix.set(i: Int , j: Int , v: Double ): DoubleMatrix operator fun DoubleMatrix.set(i: Int , j: Int , v: Int ): DoubleMatrix |
times | operator fun DoubleMatrix.times(other: DoubleMatrix): DoubleMatrix |