Skip to content

Commit f1c0a25

Browse files
committed
formate import block
1 parent c25b7c4 commit f1c0a25

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

linear_algebra/qr_decomposition.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
and is the basis for a particular eigenvalue algorithm, the QR algorithm.
77
This algorithm will simply attempt to perform QR decomposition on any square matrix.
88
Reference: https://en.wikipedia.org/wiki/QR_decomposition"""
9-
from __future__ import annotations
10-
from scipy.linalg import qr
119
import numpy as np
10+
from scipy.linalg import qr
1211

1312
def qr_decomposition(matrix_a: np.ndarray) -> tuple[np.ndarray, np.ndarray]:
1413
"""

0 commit comments

Comments
 (0)