matrix_multiply
Multiplies two matrices and returns the resulting matrix as nested lists, preserving exact integer arithmetic.
Instructions
Multiply two matrices and return the result as nested lists
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session | No | Named workspace to use. Workspaces have independent variables; omit for 'default'. | default |
| matrix_a | Yes | Left matrix (rows of numbers). Integers stay exact; pass values from 2^53 up as decimal strings, e.g. "9007199254740993". | |
| matrix_b | Yes | Right matrix (rows of numbers). Integers stay exact. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||