SciPy - Sparse Linear Algebra
What will be the output of the following code snippet?
from scipy.sparse.linalg import spilu import numpy as np A = np.array([[4,1],[1,3]]) ilu = spilu(A) print(ilu.solve([1,0]))
What will be the output of the following code snippet?
from scipy.sparse.linalg import spilu import numpy as np A = np.array([[4,1],[1,3]]) ilu = spilu(A) print(ilu.solve([1,0]))
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions