Interface MatrixZPivotRescaleOptions<ArrayConstructorType>

interface MatrixZPivotRescaleOptions<
    ArrayConstructorType extends
        NumberArrayConstructor = Float64ArrayConstructor,
> {
    ArrayConstructor?: ArrayConstructorType;
    max?: number;
}

Type Parameters

Properties

ArrayConstructor?: ArrayConstructorType

Allows to specify the type of array to use

Float64Array
max?: number

max

1