Returns the product of this and v
.
Returns the product of this and v
.
the vector to be multiplied
this*v
Returns the product of this and b
.
Returns the product of this and b
.
the other matrix to be multiplied
this*b
Scales this matrix by s
.
Returns the sum of this and b
.
Returns the sum of this and b
.
the other matrix to be added
this+b
Returns the difference of this and b
.
Returns the difference of this and b
.
the other matrix to be subtracted
this-b
tuple of the lower row- and column-index bounds of the new matrix
a copy of this matrix with the specified lower row- and column-index bounds; all row vectors are shifted to this bound
the lower column-index bound of the new matrix
a copy of this matrix with the specified lower column-index bound; all row vectors are shifted to this bound
the lower row-index bound of the new matrix
a copy of this matrix with the specified lower row-index bound
(Changed in version 2.9.0) The behavior of scanRight
has changed. The previous behavior can be reproduced with scanRight.reverse.
this matrix with a shortened index range stripped by leading and trailing zero-vector elements after shortening the vector elements itself (i.e., making concrete leading and trailing zeroes virtual in both dimensions)
2.1.0
Returns the transpose of this matrix..
Returns identity.
Returns negative complement of this.
the requested index ranges in both dimensions (the actual index ranges will be the union of this argument and the existing ones)
this vector with widened index ranges extended by leading and
trailing zero-vector elements according to index.dim1
and then widening
the vector elements itself according to index.dim2
(i.e., in both
dimensions adding concrete leading and trailing zeroes that were virtual
before)
2.1.0
Implementation trait for matrices of type
Matrix[E}
.2.0.0