Interface MatrixZRescaleOptions<ArrayConstructorType>

interface MatrixZRescaleOptions {
    ArrayConstructor?: ArrayConstructorType;
    max?: number;
    min?: number;
}

Type Parameters

Properties

ArrayConstructor?: ArrayConstructorType

Allows to specify the type of array to use.

Default

Float64Array
max?: number

max

Default

1
min?: number

min

Default

0