UNPKG

@thi.ng/tensors

Version:

0D/1D/2D/3D/4D tensors with extensible polymorphic operations and customizable storage

12 lines 415 B
import { type Tensor2 } from "./tensor.js"; /** * Matrix-matrix multiplication between matrix `a` (MxN) and matrix `b` (PxQ). * If `out` is given, it MUST be a MxQ tensor. If null then a new one will be * created, using `a`'s storage impl. * * @param out * @param a * @param b */ export declare const mulM: (out: Tensor2 | null, a: Tensor2, b: Tensor2) => Tensor2<number>; //# sourceMappingURL=mulm.d.ts.map