We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 550567c commit 277ad73Copy full SHA for 277ad73
1 file changed
phys2denoise/metrics/multimodal.py
@@ -185,7 +185,7 @@ def retroicor(
185
186
if card_data is not None:
187
# Cut to same length. It'll be better later.
188
- length = np.min(phases[n]["card"].size, phases[n]["resp"].size)
+ length = np.min((phases[n]["card"].size, phases[n]["resp"].size))
189
phases[n]["card"] = phases[n]["card"][:length]
190
phases[n]["resp"] = phases[n]["resp"][:length]
191
0 commit comments