Packages

trait MatrixOps[TMatrix, TVector] extends AnyRef

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MatrixOps
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def centerColumns(matrix: TMatrix): TMatrix
  2. abstract def colMean(matrix: TMatrix): TVector

    Computes the mean of each column.

    Computes the mean of each column. The result is transposed into a vector.

  3. abstract def gemv(A: TMatrix, x: TVector, yOpt: Option[TVector] = None, alpha: Double = 1.0, beta: Double = 1.0, aTranspose: Boolean = false): TVector

    alpha*A*x + beta*y

  4. abstract def size(matrix: TMatrix): (Long, Long)
  5. abstract def transpose(matrix: TMatrix): TMatrix