ml-spectra-processing
    Preparing search index...

    Interface MatrixGetSubMatrixOptions

    interface MatrixGetSubMatrixOptions {
        duplicate?: boolean;
        endColumn: number;
        endRow: number;
        startColumn: number;
        startRow: number;
    }
    Index

    Properties

    duplicate?: boolean

    duplicate the data

    true
    
    endColumn: number

    column index in matrix for the last column in subMatrix.

    matrix[0].length - 1
    
    endRow: number

    row index in matrix for the last row in subMatrix.

    matrix.length - 1
    
    startColumn: number

    column index in matrix for the first column in subMatrix.

    0
    
    startRow: number

    row index in matrix for the first row in subMatrix.

    0