セクション 2. 章 8
single
Challenge: Solving the Task Using SLE
メニューを表示するにはスワイプしてください
タスク
スワイプしてコーディングを開始
We have already considered how to solve the SLE using inversed matrix. But we can also use np.linalg.solve(A, y) method that calculates the solution of the SLE:
A * x = y.
Your task is to solve the system using both these methods and compare the results:
- Use
np.linalg.solve()method. - Use
np.inv()method to calculate inversed matrix and provide solution using:x = A_inv @ y.
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 2. 章 8
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください