solve_linear_system
Solves the linear system Ax = b, returning the solution vector x from a coefficient matrix and a right-hand side vector.
Instructions
求解线性方程组 A x = b 得到 x。
参数: a: 系数矩阵 (n x n)。 b: 长度为 n 的右端向量。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| a | Yes | ||
| b | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |