danmatrix
    Preparing search index...

    Interface RowsColsFilledWithValType<T>

    The interface RowsColsFilledWithValType

    It represents the type of input to use in order to build the matrix with rows number of rows, columns number of columns, and filled with values val

    interface RowsColsFilledWithValType<T> {
        columns: number;
        rows: number;
        val: T;
    }

    Type Parameters

    • T

      the type of the values which will be stored in the matrix

    Index

    Properties

    Properties

    columns: number
    rows: number
    val: T