dot
infix fun <T : Number> MultiArray<T, D2>.dot(b: MultiArray<T, D2>): NDArray<T, D2>
Content copied to clipboard
Returns the matrix product of two numeric matrices.
same as LinAlg.dot
infix fun <T : Complex> MultiArray<T, D2>.dot(b: MultiArray<T, D2>): NDArray<T, D2>
Content copied to clipboard
Returns the matrix product of two complex matrices.
same as LinAlg.dot
infix fun <T : Number> MultiArray<T, D2>.dot(b: MultiArray<T, D1>): NDArray<T, D1>
Content copied to clipboard
Returns the matrix product of a numeric matrix and a numeric vector.
same as LinAlg.dot
infix fun <T : Complex> MultiArray<T, D2>.dot(b: MultiArray<T, D1>): NDArray<T, D1>
Content copied to clipboard
Returns the matrix product of a complex matrix and a complex vector.
same as LinAlg.dot
Returns the product of two numeric vectors.
same as LinAlg.dot
Returns the product of two complex vectors.
same as LinAlg.dot
fun <T : Number> LinAlg.dot(a: MultiArray<T, D2>, b: MultiArray<T, D2>): NDArray<T, D2>
Content copied to clipboard
Dot products of two number matrices.
fun <T : Complex> LinAlg.dot(a: MultiArray<T, D2>, b: MultiArray<T, D2>): NDArray<T, D2>
Content copied to clipboard
Dot products of two complex matrices.
fun <T : Number> LinAlg.dot(a: MultiArray<T, D2>, b: MultiArray<T, D1>): NDArray<T, D1>
Content copied to clipboard
Dot products of number matrix and number vector.
fun <T : Complex> LinAlg.dot(a: MultiArray<T, D2>, b: MultiArray<T, D1>): NDArray<T, D1>
Content copied to clipboard
Dot products of complex matrix and complex vector.
fun <T : Number> LinAlg.dot(a: MultiArray<T, D1>, b: MultiArray<T, D1>): T
Content copied to clipboard
Dot products of two number vectors. Scalar product.
fun <T : Complex> LinAlg.dot(a: MultiArray<T, D1>, b: MultiArray<T, D1>): T
Content copied to clipboard
Dot products of two complex vectors. Scalar product.