dot

open infix override fun Matrix<T>.dot(other: Matrix<T>): Matrix<T>(source)

Computes the dot product of this matrix and another one.

Receiver

the multiplicand.

Return

the dot product.

Parameters

other

the multiplier.


open infix override fun Matrix<T>.dot(vector: Point<T>): Point<T>(source)

Computes the dot product of this matrix and a vector.

Receiver

the multiplicand.

Return

the dot product.

Parameters

vector

the multiplier.