@lakuna/umath
    Preparing search index...

    Interface Matrix2Like

    Numbers arranged into two columns and two rows.

    Matrix

    interface Matrix2Like {
        "0": number;
        "1": number;
        "2": number;
        "3": number;
        [key: number]: number;
    }

    Hierarchy (View Summary)

    Implemented by

    Indexable

    • [key: number]: number
    Index

    Properties

    0 1 2 3

    Properties

    "0": number

    The value in the first column and first row.

    "1": number

    The value in the first column and second row.

    "2": number

    The value in the second column and first row.

    "3": number

    The value in the second column and second row.