import type { DoubleMatrix } from 'cheminfo-types'; import type { DoubleArrayConstructor, DoubleArrayType } from '../utils/index.ts'; export interface MatrixZRescaleOptions { /** * min * @default 0 */ min?: number; /** * max * @default 1 */ max?: number; /** * Allows to specify the type of array to use. * @default Float64Array */ ArrayConstructor?: ArrayConstructorType; } /** * Rescale a matrix between min and max values. * @param matrix - matrix [rows][cols]. * @param options - Options. */ export declare function matrixZRescale(matrix: DoubleMatrix, options?: MatrixZRescaleOptions): Array>; //# sourceMappingURL=matrixZRescale.d.ts.map