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

📄 axcopy.m

📁 含有多种ICA算法的eeglab工具箱
💻 M
字号:
% axcopy() - Copy a Matlab figure axis and its graphic objects to a new pop-up window %            using the left mouse button.%% Usage:  >> axcopy%         >> axcopy(fig)%         >> axcopy('noticks')%         >> axcopy(fig, command)%% Notes:%   1) Clicking the left mouse button on a Matlab figure axis copies the graphic objects %      in the axis to a new (pop-up) figure window. %   2) Option 'noticks' does not make x and y tickloabelmodes 'auto' in the pop-up.%   2) The command option is an optional string that is evaluated in the new window%      when it pops up. This allows the user to customize the pop-up display.%   3) Deleting the pop-up window containing the copied axis leaves the selected axis%      as the current graphic axis (gca).% Authors: Tzyy-Ping Jung & Scott Makeig, SCCN/INC/UCSD, La Jolla, 2000 %123456789012345678901234567890123456789012345678901234567890123456789012% Copyright (C) 2000 Tzyy-Ping Jung & Scott Makeig, SCCN/INC/UCSD, 3-16-00 %% This program is free software; you can redistribute it and/or modify% it under the terms of the GNU General Public License as published by% the Free Software Foundation; either version 2 of the License, or% (at your option) any later version.%% This program is distributed in the hope that it will be useful,% but WITHOUT ANY WARRANTY; without even the implied warranty of% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the% GNU General Public License for more details.%% You should have received a copy of the GNU General Public License% along with this program; if not, write to the Free Software% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA% $Log: axcopy.m,v $% Revision 1.10  2003/05/21 15:37:53  scott% header edit%% Revision 1.9  2003/03/07 22:03:37  scott% type% typo%% Revision 1.8  2003/03/07 22:02:57  scott% more '''???%% Revision 1.7  2003/03/07 21:56:56  scott% trying ''' again%% Revision 1.6  2003/03/07 21:53:11  scott% typo%% Revision 1.5  2003/03/07 21:52:28  scott% adding spaces%% Revision 1.4  2003/03/07 21:50:45  scott% trying char(double(string)) to avoid nested '''' -sm%% Revision 1.3  2002/12/05 22:55:37  arno% header%% Revision 1.2  2002/11/09 20:50:26  scott% help msg%% Revision 1.1  2002/04/05 17:36:45  jorn% Initial revision%% requires copyaxes.m% 4-2-00 added 'noticks' -sm% 01-25-02 reformated help & license -ad % 02-16-02 debuged exist('fig') -> exist('fig') == 1 -ad % 02-16-02 added the ignore parent size option -ad % 03-11-02 remove size option and added command option -ad function axcopy(fig, command)if (exist('fig') == 1) & strcmp(fig,'noticks')   noticks = 1;   if nargin> 1     shift   else     fig = [];   endendif ~(exist('fig') ==1) | isempty(fig) | fig == 0    fig = gcf;endhndl= findobj('parent',fig,'type','axes');offidx=[];for a=1:length(hndl)                    % make all axes visible    if exist('command') ~= 1        set(findobj('parent',hndl(a)),'ButtonDownFcn','copyaxis');    else        command_dbl = double(command);        % set(findobj('parent',hndl(a)),'ButtonDownFcn',['copyaxis(''' command ''')']);        comstr = double(['copyaxis(''' char(command_dbl) ''')']);        set(findobj('parent',hndl(a)),'ButtonDownFcn',char(comstr));    end;        endfigure(fig);if exist('command') ~= 1    set(hndl(a),'ButtonDownFcn','copyaxis');else    % set(hndl,'ButtonDownFcn',['copyaxis(''' command ''')']);    comstr = double(['copyaxis(''' char(command_dbl) ''')']);    set(hndl,'ButtonDownFcn',char(comstr));end;        %set(hndl,'ButtonDownFcn','copyaxis');%if ~exist('noticks')  %axis on  %set(gca,'xticklabelmode','auto')  %set(gca,'yticklabelmode','auto')%end

⌨️ 快捷键说明

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