@thi.ng/tensors
Version:
0D/1D/2D/3D/4D tensors with extensible polymorphic operations and customizable storage
11 lines • 420 B
TypeScript
/**
* Componentwise nD tensor division. Writes result to `out`. If `out` is null,
* creates a new tensor using `a`'s type and storage provider and shape as
* determined by broadcasting rules (see {@link broadcast} for details).
*
* @param out - output tensor
* @param a - input tensor
* @param b - input tensor
*/
export declare const div: import("./api.js").TensorOpTT<number>;
//# sourceMappingURL=div.d.ts.map