⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 spec4.m

📁 该工具箱为时频分析中的一类重要变换,离散时频分布的工具箱,其中提供基本算法的程序.可直接应用
💻 M
字号:
function [tfd, t, f] = spec4(x, fs, w)% spec4 -- Compute samples of the type IV spectrogram.%%  Usage%    [tfd, t, f] = spec4(x, fs, w)%%  Inputs%    x     signal vector%    fs    sampling frequency of x (optional, default is 1 sample/second)%    w     window vector (optional, default is a hamming window of length 32)%%  Outputs%    tfd  matrix containing the spectrogram of signal x (optional)%    t    vector of sampling times (optional)%    f    vector of frequency values (optional)%% If no output arguments are specified, then the spectrogram is% displayed using ptfd(tfd, t, f).% Copyright (C) -- see DiscreteTFDs/Copyrighterror(nargchk(1, 3, nargin));if (nargin == 1)  [tfd, t, f] = stft4(x);elseif (nargin == 2)  [tfd, t, f] = stft4(x, fs);elseif (nargin == 3)  [tfd, t, f] = stft4(x, fs, w);endtfd = real(tfd.*conj(tfd));if (nargout == 0)  ptfd(tfd, t, f);  clear tfdend

⌨️ 快捷键说明

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