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 363a670 commit 89c6d13Copy full SHA for 89c6d13
pydmd/varprodmd.py
@@ -213,9 +213,9 @@ def _compute_dmd_jac(
213
214
# construct imaginary part for optimization
215
jac_out[
216
- : jac_out.shape[0] // 2, __alphas.shape[-1] + j
+ : jac_out.shape[0] // 2, _alphas.shape[-1] + j
217
] = -jac_flat.imag
218
- jac_out[jac_out.shape[0] // 2 :, __alphas.shape[-1] + j] = jac_flat.real
+ jac_out[jac_out.shape[0] // 2 :, _alphas.shape[-1] + j] = jac_flat.real
219
220
return jac_out
221
0 commit comments