koblas

minus

A - B, allocating. axpy with alpha = -1.0 accumulates into an existing operand.


a - b, allocating. axpy with alpha = -1.0 accumulates into an existing operand.

plus

A + B, allocating. axpy accumulates into an existing operand.


a + b, allocating. axpy accumulates into an existing operand.

times

A * B (BLAS dgemm), allocating. gemm accumulates into an existing C instead.


Matrix-vector product into a fresh dense result for any F64MatrixLike against any F64VectorLike. gemv provide transpose and destination-buffer variants.


alpha * A, allocating. scale multiplies in place.


alpha * x, allocating. scale multiplies in place.

unaryMinus

-A, allocating.


-x, allocating.