MCQOPTIONS
Saved Bookmarks
| 1. |
from scipy import linalgimport numpy as npa = np.array([[3, 2, 0], [1, -1, 0], [0, 5, 1]])b = np.array([2, 4, -1])x = linalg.solve(a, b)print x8.In SciPy, determinant is computed using? |
| A. | determinant() |
| B. | SciPy.determinant() |
| C. | det() |
| D. | SciPy.det() |
| Answer» D. SciPy.det() | |