object BzMatrixOps extends MatrixOps[DenseMatrix[Double], DenseVector[Double]]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- BzMatrixOps
- MatrixOps
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
def
centerColumns(matrix: DenseMatrix[Double]): DenseMatrix[Double]
- Definition Classes
- BzMatrixOps → MatrixOps
-
def
colMean(matrix: DenseMatrix[Double]): DenseVector[Double]
Computes the mean of each column.
Computes the mean of each column. The result is transposed into a vector.
- Definition Classes
- BzMatrixOps → MatrixOps
-
def
gemv(A: DenseMatrix[Double], x: DenseVector[Double], yOpt: Option[DenseVector[Double]] = None, alpha: Double = 1.0, beta: Double = 1.0, aTranspose: Boolean = false): DenseVector[Double]
alpha*A*x + beta*y
alpha*A*x + beta*y
- Definition Classes
- BzMatrixOps → MatrixOps
-
def
size(matrix: DenseMatrix[Double]): (Long, Long)
- Definition Classes
- BzMatrixOps → MatrixOps
-
def
transpose(matrix: DenseMatrix[Double]): DenseMatrix[Double]
- Definition Classes
- BzMatrixOps → MatrixOps