dot

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

Computes the dot product of this matrix and another one.

Return

the dot product.

Parameters

<receiver>

the multiplicand.

other

the multiplier.

open infix override fun Matrix<Double>.dot(vector: Point<Double>): DoubleBuffer

Computes the dot product of this matrix and a vector.

Return

the dot product.

Parameters

<receiver>

the multiplicand.

vector

the multiplier.