Hello everyone
I have 3 parameters
t(s),sliprate(m/s),y(km)
now I want to have a stacked plot for sliprates against time that is the same for all.Each sliprate should be ploted at its y position.
I used the following code
t=time(:,1);
y=alongstrike(1,:);
hold all
for i=1:41
plot(time(:,i),sliprate(:,i)+alongstrike(1,i))
end
my problem is that I can't see the sliprate movement,its so small.they should all look like real waves. I attached my figure .Can you tell me what could get fixed
0 Comments
Sign in to comment.