资源简介
matlab S变换代码
代码片段和文件信息
function [sttf] = st(timeseries)
TRUE = 1;
FALSE = 0;
%%% DEFAULT PARAMETERS [change these for your particular application]
verbose = TRUE;
removeedge= FALSE;
analytic_signal = FALSE;
factor = 1;
% use defaults for input variables
% calculate the sampled time and frequency values from the two sampling rates
t = (0:500-1)*1;
spe_nelements =ceil((250 - 0+1)/1) ;
f = (0 + [0:spe_nelements-1]*1)/(1*500);
% The actual S Transform function is here:
st = strans(timeseries025011verboseremoveedgeanalytic_signalfactor);
% this function is below thus nicely encapsulated
%WRITE switch statement on nargout
% if 0 then plot amplitude spectrum
return
%^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
%^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
%^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
%^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
%^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
function st = strans(timeseriesminfreqmaxfreqsamplingratefreqsamplingrateverboseremoveedgeanalytic_signalfactor);
% Returns the Stockwell Transform STOutput of the time-series
% Code by R.G. Stockwell.
% Reference is “Localization of the Complex Spectrum: The S Transform“
% from IEEE Transactions on Signal Processing vol. 44. number 4
% April 1996 pages 998-1001.
%
%-------Inputs Returned------------------------------------------------
% - are all taken care
- 上一篇:ARIMA模型的MATLAB实现
- 下一篇:matlab设计滤波器课程设计程序
相关资源
- matlab设计滤波器课程设计程序
- ARIMA模型的MATLAB实现
- ARMA模型的MATLAB实现
- matlab 音调跟踪Pitch Tracking
- 遗传算法优化BP神经网络,以非线性函
- 粒子群算法在物流中心选址中的应用
- Sick激光雷达数据解析程序MATLAB
- MOEA\\Dmatlab注释,帮助大家理解
- LPP,matlab实现
- LDA,matlab实现
- 通信系统的matlab仿真
- 高斯光透镜变换后的matlab程序
- matlab模型预测控制
- 基于MATLAB的虹膜定位
- 量子聚类--matlab
- yolomatlab.zip
- matlab图像锐化处理
- MATLAB仿真mac协议
- 相机标定matlab程序,ubuntu
- lfm信号模糊函数图 matlab
- matlab r2014b 激活文件
- 使用matlab+web+server直接进行web开发.d
- 小生境PSO算法matlab程序
- 伪逆法的matlab实现
- 将视频分解成一帧一帧的matlab实现算
- 基音周期提取算法
- 基于遗传算法的BP神经网络MATLAB代码
- matlab实现霍夫曼压缩与解压缩
- 高斯背景建模
- Matlab-PDE工具箱有限元法求解偏微分方
评论
共有 条评论