import type { NumberArray } from 'cheminfo-types'; import type { NumberArrayConstructor, NumberArrayType } from '../utils/index.ts'; export interface MatrixZPivotRescaleOptions { /** * max * @default 1 */ max?: number; /** * Allows to specify the type of array to use * @default Float64Array */ ArrayConstructor?: ArrayConstructorType; } /** * Rescale a matrix around 0 taking into account the absolute max value. * @param matrix - matrix [rows][cols]. * @param options - Options. */ export declare function matrixZPivotRescale(matrix: NumberArray[], options?: MatrixZPivotRescaleOptions): Array>; //# sourceMappingURL=matrixZPivotRescale.d.ts.map