is it possible when we use plot command, automatically be on Data Cursor( and some other things)?

1 次查看(过去 30 天)
is it possible when we use plot command, automatically these things happens:
1-being on Data Cursor
2-plot x from 0 to 10000 and y from 0 to 700
3-axes properties being active
4-figure window was full maximize
5-grid being on

采纳的回答

Oleg Komarov
Oleg Komarov 2011-9-8
No.
After plotting:
  1. call datacursormode
  2. xlim, ylim or set(gca,'Xlim',[0 1e4],'Ylim',[0 700])
  3. What do you mean?
  4. I suggest WindowAPI from FEX but you can use manual set(gcf,'Position',[...]) after having retrieved the dimension of the screen with fullscreen = get(0,'ScreenSize')
  5. grid or set(gca,'grid','on') which you can call all at once with point 2.
  2 个评论
mohammad
mohammad 2011-9-8
thanks a lot
so nice
3-in edit Tab (in figure) there is axes properties that its needed being selected automatically at first
Oleg, please explain more about set(gcf,'Position',[...]) fullscreen = get(0,'ScreenSize')
Oleg Komarov
Oleg Komarov 2011-9-9
For 3, use get/inspect(gca) and then set the property you need.
gcf returns the handle to current figure (while gca to the current axes). 0 is the root handle which contains some general properties like the screensize. The concept is that you want to set the position property to the size of the screen.
For additional details refer to the figure, axes properties in the documentation, look for position.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by