Skip to content

Commit

Permalink
Display time and uy, 8 iterations
Browse files Browse the repository at this point in the history
  • Loading branch information
pvillacorta committed Sep 2, 2024
1 parent 6cba05d commit 1262f18
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions KomaMRIBase/src/motion/motionlist/actions/ArbitraryAction.jl
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,9 @@ function displacement_y(
itp = interpolate(action.dy, Gridded(Linear()), Val(size(action.dy,1)))
uy = resample(itp, t)
m = minimum([size(uy,2), 8])
println("t: ", @view(t[1:1, 1:m]))
println("uy: ", @view(uy[1:1, 1:m]))
println("t: ", @view(t[1, 1:m]))
println("uy: ", @view(uy[1, 1:m]))
print("\n")
return uy
end

Expand Down

0 comments on commit 1262f18

Please sign in to comment.