@thi.ng/tensors
Version:
0D/1D/2D/3D/4D tensors with extensible polymorphic operations and customizable storage
10 lines • 395 B
TypeScript
import type { FnU3 } from "@thi.ng/api";
import type { TensorOpTNN } from "./api.js";
/**
* Higher order tensor op factory. Takes given `fn` and returns a
* {@link TensorOpTNN} applying the given function component-wise.
*
* @param fn
*/
export declare const defOpTNN: <T = number>(fn: FnU3<T>) => import("./api.js").MultiTensorOpImpl<TensorOpTNN<T>>;
//# sourceMappingURL=defoptnn.d.ts.map