📄 tfr_sr.m
字号:
function f=tfr_sr(self,c,Ls)%TFR_SR Synthesis transform, rectangular layout% Usage: f=tfr_sr(tfr,c)% f=tfr_sr(tfr,c,Ls)%% Input parameters:% tfr : Time/frequency representation handle.% c : Array of coefficients.% Ls : length of signal.% Output parameters:% f : Signal.%% TFR_SR(tfr,c) computes the synthesis transform of the coefficients c as% speficied by tfr. The coefficients must be arranged in a rectangular% layout as returned by TFR_AR.%% TFR_SR(tfr,c,Ls) does as above but cuts or extends f to length Ls.%% SEE ALSO: TFR_CREATE, TFR_AR, TFR_A, TFR_CLEARerror(nargchk(2,3,nargin));% Let comp_s do all the work.if nargin==2 f=comp_s(self,c,1,'TFR_SR',-1);else f=comp_s(self,c,1,'TFR_SR',Ls);end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -