plotyy and Property Editor

조회 수: 3 (최근 30일)
Raph Hix
Raph Hix 2012년 5월 24일
Hi-
I can't figure out how to use the GUI and the Property Editor to access the second axis in a plotyy figure. I can edit the properties of the main axis and its lineseries, as well as the secondary lineseries, but I can't figure out how to select the secondary axis. As a result, I can't keep the two graphs coordinated if I change the limits or linearity of the X axis. Any suggestions?
Raph

채택된 답변

Raph Hix
Raph Hix 2012년 5월 25일
Thanks Oleg-
I found the inspect function to be difficult to use deep in a nested set of functions, but I found a way to use the GUI after the fact. The Plot Browser does the trick.
Raph

추가 답변 (1개)

Oleg Komarov
Oleg Komarov 2012년 5월 24일
you can save the handles to the two axes and then reuse them with, e.g. inspect():
h = plotyy(...)
where h will have two handles.
Try then
inspect(h(1))
inspect(h(2))
inspect(h)

카테고리

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