dtfdpath.m

来自「分数阶Fourier变换程序」· M 代码 · 共 31 行

M
31
字号
function DTFDPath(p)% DTFDPath.m -- add necessary paths for DiscreteTFDs%% You should put something like the following lines in your startup.m file:% (Do not put a trailing '/' at the end of p!)%     p = '/home/jeffo/matlab/DiscreteTFDs';%     path(path, p)%     DTFDPath(p)%     clear p%% If you are using a Mac or Windows then you will need to edit the "path"% commands in this file to reflect your system conventions.% Copyright (c) 1997, 1998 Jeffrey C. O'Neill (jeffo@eecs.umich.edu)% Copyright (c) 1997 The Regents of the University of Michigan% All Rights Reservedif (p(length(p)) == '/')  disp('Remove trailing ''/'' in call to DTFDPath.')enddisp('DiscreteTFDs version 0.8 installed.  Type: help DiscreteTFDs')path(path, [p '/TypeI']);path(path, [p '/TypeII']);path(path, [p '/TypeIV']);path(path, [p '/Utils']);path(path, [p '/Demos']);path(path, [p '/Quartic']);path(path, [p '/Chirplets']);path(path, [p '/Symplectic']);

⌨️ 快捷键说明

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