dot

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

Computes the dot product of this matrix and another one.

Return

the dot product.

Parameters

<receiver>

the multiplicand.

other

the multiplier.

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

Computes the dot product of this matrix and a vector.

Return

the dot product.

Parameters

<receiver>

the multiplicand.

vector

the multiplier.