⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gethandles.m

📁 这是一个基于matlab开发的关于c语言的图形转换程序,可实现直方图的生成和传输
💻 M
字号:
function h = gethandles(h)
%GETHANDLES Get all the handles used in the GUI
%   h = GETHANDLES(h) finds the handles used in the GUI and assigns them
%   to elements of the structure h

% Jordan Rosenthal, 04-Oct-1999

h.Axis.x              = findobj(gcf, 'Tag', 'xAxis');h.Axis.h              = findobj(gcf, 'Tag', 'hAxis');h.Axis.Signal         = findobj(gcf, 'Tag', 'SignalAxis');h.Axis.Multiply       = findobj(gcf, 'Tag', 'MultiplyAxis');h.Axis.Output         = findobj(gcf, 'Tag', 'OutputAxis');h.Axis.Text           = findobj(gcf, 'Tag', 'TextAxis');h.Axis.Hideable       = [ h.Axis.x; h.Axis.h; h.Axis.Text ];h.Axis.Big            = [ ...       h.Axis.Signal; h.Axis.Multiply; h.Axis.Output ];
h.Menu.PlotOptions             = findobj(gcf, 'Tag', 'Plot Options');h.Menu.ConserveSpace           = findobj(gcf, 'Tag', 'Conserve Space');h.Menu.Help                    = findobj(gcf, 'Tag', 'Help');
h.Button.Tutorial              = findobj(gcf, 'Tag', 'TutorialButton');h.Button.Radio                 = findobj(gcf, 'Style', 'radiobutton');h.Button.Hideable              = setdiff( ...   [h.Button.Radio; findobj(gcf,'Style','pushbutton') ], ...   h.Button.Tutorial)';

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -