dot

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

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<Double>.dot(vector: Point<Double>): DoubleBuffer

Computes the dot product of this matrix and a vector.

Receiver

the multiplicand.

Return

the dot product.

Parameters

vector

the multiplier.