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 1bd8e1a commit b1faef8Copy full SHA for b1faef8
pydmd/bopdmd.py
@@ -624,8 +624,8 @@ def compute_B(alpha):
624
q_out, djac_out, j_pvt = qr(
625
djac_matrix, mode="economic", pivoting=True
626
)
627
- ij_pvt = np.zeros(IA).astype(int)
628
- ij_pvt[j_pvt] = np.arange(IA).astype(int)
+ ij_pvt = np.zeros(IA, dtype=int)
+ ij_pvt[j_pvt] = np.arange(IA, dtype=int)
629
rjac[:IA] = np.triu(djac_out[:IA])
630
rhs_top = q_out.conj().T.dot(rhs_temp)
631
scales_pvt = scales[j_pvt[:IA]]
0 commit comments