We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61cba5d commit 8cdd72bCopy full SHA for 8cdd72b
amoeba/src/amoeba/Util/util.py
@@ -2088,12 +2088,10 @@ def calculate_blr_transfer_function(
2088
* vertical_resolution,
2089
)
2090
2091
- response_of_current_slab = (
2092
- rescale(response_of_current_slab, rescale_factor) * magnification_crop
2093
- )
2094
- time_delays_of_current_slab = rescale(
2095
- time_delays_of_current_slab, rescale_factor
+ response_of_current_slab = response_of_current_slab * rescale(
+ magnification_crop, rescale_factor
2096
+ time_delays_of_current_slab = time_delays_of_current_slab
2097
2098
transfer_function_of_slab = np.histogram(
2099
time_delays_of_current_slab,
0 commit comments