MatrixProduct

smile.cas.MatrixProduct
case class MatrixProduct(A: Matrix, B: Matrix) extends Matrix

Matrix multiplication (A * B)

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Matrix
trait Tensor
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

override def apply(env: Map[String, Tensor]): Matrix

Applies the expression.

Applies the expression.

Attributes

Definition Classes
override def d(dx: Var): Matrix

Returns the partial derivative.

Returns the partial derivative.

Attributes

Definition Classes
override def simplify: Matrix

Simplify the expression.

Simplify the expression.

Attributes

Definition Classes
override def size: (IntScalar, IntScalar)

The size of matrix (rows x columns).

The size of matrix (rows x columns).

Attributes

Definition Classes
override def toString: String

Returns a string representation of the object.

Returns a string representation of the object.

The default representation is platform dependent.

Attributes

Returns

a string representation of the object.

Definition Classes
Any

Inherited methods

def *(y: Matrix): Matrix

Attributes

Inherited from:
Matrix
def *(y: Vector): Vector

Attributes

Inherited from:
Matrix
def *(y: Scalar): Matrix

Attributes

Inherited from:
Matrix
def +(y: Matrix): Matrix

Attributes

Inherited from:
Matrix
def -(y: Matrix): Matrix

Attributes

Inherited from:
Matrix
def apply(env: (String, Tensor)*): Matrix

Applies the expression.

Applies the expression.

Attributes

Inherited from:
Matrix
def inv: Matrix

The inverse of matrix.

The inverse of matrix.

Attributes

Inherited from:
Matrix

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product
override def rank: Option[Int]

The rank of tensor, i.e. the number of dimensions.

The rank of tensor, i.e. the number of dimensions.

Attributes

Definition Classes
Inherited from:
Matrix
override def shape: Option[Array[IntScalar]]

The shape of tensor, i.e the size of each dimension.

The shape of tensor, i.e the size of each dimension.

Attributes

Definition Classes
Inherited from:
Matrix
def t: Matrix

The transpose of matrix.

The transpose of matrix.

Attributes

Inherited from:
Matrix

Attributes

Inherited from:
Matrix

Attributes

Inherited from:
Matrix