Skip to content

Commit 89c6d13

Browse files
committed
fixing renaming error
1 parent 363a670 commit 89c6d13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydmd/varprodmd.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ def _compute_dmd_jac(
213213

214214
# construct imaginary part for optimization
215215
jac_out[
216-
: jac_out.shape[0] // 2, __alphas.shape[-1] + j
216+
: jac_out.shape[0] // 2, _alphas.shape[-1] + j
217217
] = -jac_flat.imag
218-
jac_out[jac_out.shape[0] // 2 :, __alphas.shape[-1] + j] = jac_flat.real
218+
jac_out[jac_out.shape[0] // 2 :, _alphas.shape[-1] + j] = jac_flat.real
219219

220220
return jac_out
221221

0 commit comments

Comments
 (0)