is_sccn.m
来自「含有多种ICA算法的eeglab工具箱」· M 代码 · 共 11 行
M
11 行
% is_sccn() - returns 1 if computer is located at SCCN (Swartz Center% for computational Neuroscience) and 0 otherwisefunction bool = is_sccn; bool = 0; domnane = ' '; eval([ 'if isunix, [tmp domname] = unix(''hostname -d'');' ... 'end;' ... 'bool = strcmpi(domname(1:end-1), ''sccn.ucsd.edu'');' ], '');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?