We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7634cf0 commit 6732fa0Copy full SHA for 6732fa0
arithmetic_analysis/lu_decomposition.py
@@ -6,10 +6,9 @@
6
from typing import Tuple
7
8
import numpy as np
9
-from numpy import ndarray
10
11
12
-def lower_upper_decomposition(table: ndarray) -> Tuple[ndarray, ndarray]:
+def lower_upper_decomposition(table: np.ndarray) -> Tuple[np.ndarray, np.ndarray]:
13
"""Lower-Upper (LU) Decomposition
14
15
Example:
0 commit comments