@lakuna/umath
    Preparing search index...

    Interface Matrix3Like

    Numbers arranged into three columns and three rows.

    Matrix

    interface Matrix3Like {
        "0": number;
        "1": number;
        "2": number;
        "3": number;
        "4": number;
        "5": number;
        "6": number;
        "7": number;
        "8": number;
        [key: number]: number;
    }

    Hierarchy (View Summary)

    Implemented by

    Indexable

    • [key: number]: number
    Index

    Properties

    0 1 2 3 4 5 6 7 8

    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 first column and third row.

    "3": number

    The value in the second column and first row.

    "4": number

    The value in the second column and second row.

    "5": number

    The value in the second column and third row.

    "6": number

    The value in the third column and first row.

    "7": number

    The value in the third column and second row.

    "8": number

    The value in the third column and third row.