@thi.ng/vectors
Version:
Optimized 2d/3d/4d and arbitrary length vector operations, support for memory mapping/layouts
25 lines • 1.02 kB
TypeScript
/**
* Compnentwise checks if given nD vector `a` is greater than `b` and writes
* results to boolean output vector. If `out` is null, creates a new result
* vector. Multi-method.
*/
export declare const gt: import("./api.js").MultiVecOpVV<number, boolean>;
/**
* Compnentwise checks if given 2D vector `a` is greater than `b` and writes
* results to boolean output vector. If `out` is null, creates a new result
* vector.
*/
export declare const gt2: import("./api.js").VecOpVV<number, boolean>;
/**
* Compnentwise checks if given 2D vector `a` is greater than `b` and writes
* results to boolean output vector. If `out` is null, creates a new result
* vector.
*/
export declare const gt3: import("./api.js").VecOpVV<number, boolean>;
/**
* Compnentwise checks if given 2D vector `a` is greater than `b` and writes
* results to boolean output vector. If `out` is null, creates a new result
* vector.
*/
export declare const gt4: import("./api.js").VecOpVV<number, boolean>;
//# sourceMappingURL=gt.d.ts.map