startltfat.m

来自「linear time-frequency toolbox」· M 代码 · 共 46 行

M
46
字号
% ------- setup of base path ------------------% Modify 'basepath' to reflect the base path of the toolbox, e.g. the full% path of the ltfat directory.%% Otherwise, just 'cd' to the directory containing this file, and execute% startltfat.basepath=pwd;% ------- do not edit below this line ---------% The path seperator is different on Unix, Windows and Mac.if isunix  pathsep='/';else  if ispc    pathsep='\\';  else    % Guess: This must be a mac    pathsep=':'  end;end;bp=[basepath,pathsep];addpath([bp,'ltfat'])addpath([bp,'comp'])if isoctave  addpath([bp,'oct'])else  addpath([bp,'mex'])%  addpath([bp,'GabGui']);%  addpath([bp,'GabGui',pathsep,'functions']);%  addpath([bp,'GabGui',pathsep,'callbacks']);end;addpath([bp,'oo'])addpath([bp,'sigproc']);addpath([bp,'examples']);addpath([bp,'signals']);global TF_CONF;TF_CONF.basepath=bp;TF_CONF.pathsep=pathsep;

⌨️ 快捷键说明

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