필터 지우기
필터 지우기

Problem with plotyy in GUI

조회 수: 1 (최근 30일)
Johannes
Johannes 2016년 2월 26일
편집: Johannes 2016년 2월 26일
Hello,
I have a problem with the plotyy function in my GUI (not created with GUIDE). In the beginning of my software I initialize the corresponding axes:
g.hPlot2D = axes('Parent', hAv, ...
'Color', 'None',...
'OuterPosition', AXES_FULL);
"hAv" and "AXES_FULL" are variables referring to the Parent and position.
Later I try to update my axis using the following statement in a different function:
g = guidata(hFig);
h = g.hPlot2D;
cla(h);
plotyy(h, x1, y1, x2, y2);
This procedure worked without any problems for a simple plot but it does not work out for plotyy. Instead it creates the second plot (for the right y-axis) below the first one (instead of on top of it). I think that I might have to initialize the axes for the plotyy differently but I'm not sure how to do that. Could you help me with that?
Thank you very much! Johannes

답변 (0개)

카테고리

Help CenterFile Exchange에서 Two y-axis에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by