Please trim your posted code down to the bare minimum--the reading portion isn't of any concern here; only your data and the plot.
First, you've plotted t vs fz in the code or something called jumph (that you don't show any definition for) versus its index. Which of these generated the actual plot you attached (if either?).
To plot against t, your plot will need be
plot(t,fz)
The definition of t you show is 0:dt:T for a given dt so the x-axis of the resulting plot will start at 0 on the left. I note you've negated your fz from the data source so it'll be inverted vertically; is that the issue? If so, "just don't do that" or if there's a reason it's negated and you want the axis to run the other direction vertically, then you can change that by
set(gca,'ydir','reverse')
If that isn't the problem, try again by editing the post but trim it significantly and be sure what you post and pictures you show are
a) complete in the pertinent areas (no undefined variable jumph, say)
b) what you show is exactly and only the result from the code posted, with editing for posting.
PS. You did, I gather solve the previous problem of selecting the data from the sequence by removing the zero block? If so, please accept the answer given there so can close the thread.