change x axis, i have a plot of data from a headset. then i have 5 lines from a game, so i want 0-time from start(green) line till the end(red line), is it possible?

조회 수: 3 (최근 30일)
plot(data(2:end,3),data(2:end,1));
hold on;
plot(data(2:end,3),data(2:end,2), 'k');
plot([Start Start],[0 1], 'g');
plot([mistake1 mistake1],[0 1], 'c');
plot([mistake2 mistake2],[0 1], 'c');
plot([mistake3 mistake3],[0 1], 'c');
plot([mistake4 mistake4],[0 1], 'c');
plot([End End],[0 1], 'r');

채택된 답변

pfb
pfb 2015년 4월 29일
편집: pfb 2015년 4월 29일
Not sure what your asking for.
Do you need to re-define the limits of your x-axis so that they go from the green to the red line? That would be
xlim([start end]);
Or maybe you want that your scale be 0 at the green line... In that case you simply substract start from all the xdata in your plots. When plotting
plot(data(2:end,3)-start,data(2:end,1));
and likewise for the others.
Otherwise, with focus on the axes containing your plots, like the figure you sent,
% get the handles for the lines
h = findobj(gca,'type','line','linestyle','-');
% loop over the handles
for j = 1:length(h)
% translate the xdata
set(h(j),'xdata',get(h(j),'xdata')-start);
end
  댓글 수: 2
sindre Røyland
sindre Røyland 2015년 4월 29일
of course! plot(data(2:end,3)-start,data(2:end,1));, i was just stucked in some big ideas!
Thanks!
pfb
pfb 2015년 4월 29일
Not sure I understand even after your reply to Michael.
Translating all your xdata, as illustrated above, puts the origin at start.
The rest seems like a xticklabel or xtick matter.
If you do not translate, but insist on using your plot:
set(gca,'xtick',[54 162],'xticklabel',[0 108]);
otherwise, if you translate, you just need
set(gca,'xtick',[0 108]);
Because the ticklabels would coincide with the real tick positions. Personally, I'd prefer this.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Michael Haderlein
Michael Haderlein 2015년 4월 29일
편집: Michael Haderlein 2015년 4월 29일
It's not quite clear what you want.
1) You want the x-axis to only go from the green line to the red line:
xlim(Start, End)
as you have named the respective values this way.
2) You want to get the data which lies in between the green and the red line for further processing:
partofthedata=data(data(:,3)>=Start & data(:,3)<=End,:);
Please note that the exclusion of the first row (you use data(2:end,...)) is not applied here. If this is a problem, first remove this row and then cut out the way I have shown here.
3) A comment on your variable naming: "End" is a very bad variable name. First, it's a keyword and second it has a special meaning as index (even though you have capitalized it - I wouldn't use it).
  댓글 수: 3
pfb
pfb 2015년 4월 29일
xlim(Start, End)
would produce an error, though. The limits should be in a vector, at least up to R2012b.
xlim([Start, End])
I agree on avoiding the name End for a variable. Did not spot that.
Michael Haderlein
Michael Haderlein 2015년 5월 4일
Oops, thanks for correcting me. Of course it's supposed to be an array. Anyway, guess the issue is already solved.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by