tfr_set_win.m

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

M
21
字号
function tfr_set_win(self,window)%TFR_SET_WIN  Set analysis/synthesis window%  Usage: tfr_set_win(self,window)%%  Window can be a column vector or a string denoting the type%  of window chosen. In the latter case, a appropriate window of%  that type will be choosen.% Make Octave behave like Matlabinitialize_global_variables=1;default_global_variable_value=[];global TF_STORAGE;% Verify that TF_STORAGE has been initializedif prod(size(TF_STORAGE))==0  error('Please run tfr_init to obtain a valid handle.');end;TF_STORAGE.data{self}.awin=window;

⌨️ 快捷键说明

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