CodableAIA Stacksona Company

Matrix Calculator

Performs matrix operations and shows row by row work.

Run tool

Form input

Output JSON


          

Work steps

    Inputs

    NameTypeRequiredDescription
    modetextYesMode
    aarrayYesA
    barrayYesB

    Outputs

    NameTypeDescription
    resultarrayResult
    workarrayWork

    Sample request

    {
      "mode": "multiply",
      "a": [
        [
          1,
          2
        ],
        [
          3,
          4
        ]
      ],
      "b": [
        [
          5,
          6
        ],
        [
          7,
          8
        ]
      ]
    }