@thi.ng/tensors
Version:
0D/1D/2D/3D/4D tensors with extensible polymorphic operations and customizable storage
11 lines • 353 B
TypeScript
import type { ITensor1, ITensor2 } from "./api.js";
/**
* Matrix-vector multiplication. If `out` is null, a new 1D tensor will be
* created, using vector `b`'s type and storage impl.
*
* @param out
* @param a
* @param b
*/
export declare const mulV: (out: ITensor1 | null, a: ITensor2, b: ITensor1) => ITensor1;
//# sourceMappingURL=mulv.d.ts.map