📄 startltfat.m
字号:
% ------- 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -