Skip to content

Commit 837ffbd

Browse files
authored
Merge branch 'master' into lagged_dmdc
2 parents 6f4d59d + 7ac9f3f commit 837ffbd

File tree

3 files changed

+2184
-2143
lines changed

3 files changed

+2184
-2143
lines changed

docs/source/_tutorials/tutorial12cdmd.html

Lines changed: 2182 additions & 2141 deletions
Large diffs are not rendered by default.

tutorials/tutorial12/tutorial-12-cdmd.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
" if noise:\n",
186186
" vid += np.random.normal(0, noise_amt, vid.shape)\n",
187187
" vid = vid.clip(0, 1)\n",
188-
" return np.vstack(imgs).T, shape\n",
188+
" return vid, shape\n",
189189
"\n",
190190
"\n",
191191
"def get_video(object: str = \"frog\") -> np.ndarray:\n",

tutorials/tutorial12/tutorial-12-cdmd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def get_video_dmd(
121121
if noise:
122122
vid += np.random.normal(0, noise_amt, vid.shape)
123123
vid = vid.clip(0, 1)
124-
return np.vstack(imgs).T, shape
124+
return vid, shape
125125

126126

127127
def get_video(object: str = "frog") -> np.ndarray:

0 commit comments

Comments
 (0)