matrix_multiply
Multiply two matrices by computing the matrix product A @ B for compatible rows and columns. Use it to get deterministic results for linear algebra tasks in a sandboxed math server.
Instructions
Return the matrix product A @ B.
Columns of A must match rows of B. Matrices are lists of rows.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | ||
| b | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |