Interface MatrixZRescaleOptions<ArrayConstructorType>

interface MatrixZRescaleOptions<
    ArrayConstructorType extends
        DoubleArrayConstructor = Float64ArrayConstructor,
> {
    ArrayConstructor?: ArrayConstructorType;
    max?: number;
    min?: number;
}

Type Parameters

Properties

ArrayConstructor?: ArrayConstructorType

Allows to specify the type of array to use.

Float64Array
max?: number

max

1
min?: number

min

0