Solves the linear system `m . x == b`.
独立して検証可能: この関数の答えは別の経路で再導出して比較されます。ワークベンチと verify ツールがこれを自動で行うため、誤った答えは信用されずに検出されます。 履歴 →
LinearSolve[m, b]
LinearSolve[m]
LinearSolve[a, b]
LinearSolve[{{1, 2}, {3, 4}}, {5, 11}]
→ {1, 2}LinearSolve[{{1, 2}, {3, 4}}][{5, 11}]
→ {1, 2}LinearSolve[{{1, 2, 3}, {4, 5, 6}}, {1, 2}]
→ {-1/3, 2/3, 0}- Method — default Automatic
- Modulus — default 0
- ZeroTest — default Automatic