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 4475574 commit 99382edCopy full SHA for 99382ed
src/mrinufft/trajectories/tools.py
@@ -555,9 +555,8 @@ def get_gradient_amplitudes_to_travel_for_set_time(
555
gmax=gmax,
556
smax=smax,
557
)
558
- N = (
559
- np.max(np.sum(n_ramp_down + n_ramp_up + n_plateau, axis=0)) + 2
560
- ) # Extra 2 buffer samples
+ # Extra 2 buffer samples
+ N = np.max(n_ramp_down + n_ramp_up + n_plateau) + 2
561
562
area_needed = (ke - ks) / gamma / raster_time
563
# Intermediate gradient values. This is value of plateau or triangle gradients
0 commit comments