matrix_multiply
Multiply two matrices A and B, given as rows of numbers, to compute the matrix product A @ B.
Instructions
矩阵相乘 A (m x n) 与 B (n x p)。
参数: a: 左矩阵,按行组成的列表。 b: 右矩阵,按行组成的列表。
返回: 乘积矩阵 A @ B,按行组成的列表。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | ||
| b | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |