UNPKG

@thi.ng/tensors

Version:

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

11 lines 363 B
import { type Tensor1, type Tensor2 } from "./tensor.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: Tensor1 | null, a: Tensor2, b: Tensor1) => Tensor1<number>; //# sourceMappingURL=mulv.d.ts.map