how to set gui axes ylim

2 views (last 30 days)
mr. wang
mr. wang on 23 Mar 2017
Commented: mr. wang on 23 Mar 2017
i created a axes object in gui and set ylim[-1 1] in property inspector,but the figure will be showed this
and i try to change parameter about ylim value form matlab program,but it just add one more new axes
what sould i solve this problem?and i couldn't find the function about axes in matlab program.should i creat a function for setting axes property?
  3 Comments
Stephen23
Stephen23 on 23 Mar 2017
Edited: Stephen23 on 23 Mar 2017
This command:
axes('Parent',controller,...);
will create new axes, because that is what it is supposed to do.
If you want to change the properties of existing axes, then you need to access its properties using set and get, or for newer MATLAB versions using dot notation:
mr. wang
mr. wang on 23 Mar 2017
thx for your correspond and i try for your answer.it is successful.

Sign in to comment.

Answers (0)

Categories

Find more on Graphics Objects in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!