@thi.ng/tensors
Version:
0D/1D/2D/3D/4D tensors with extensible polymorphic operations and customizable storage
11 lines • 419 B
TypeScript
import type { FnU3 } from "@thi.ng/api";
import type { TensorOpTTT } from "./api.js";
/**
* Higher order tensor op factory. Takes given `fn` and returns a
* {@link TensorOpTTT} applying the given function componentwise with
* broadcasting rules (see {@link broadcast} for details).
*
* @param fn
*/
export declare const defOpTTT: <T = number>(fn: FnU3<T>) => TensorOpTTT<T>;
//# sourceMappingURL=defopttt.d.ts.map