• 大小: 5KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-04
  • 语言: Matlab
  • 标签: matlab  s变换  

资源简介

这个是基于matlab的s变换,可以方便的运行,程序已经过我的调试。

资源截图

代码片段和文件信息


% the s-tranform test script
len = 128;
freq = 5;   
t = 0:len-1;

% CREATE CROSS CHIRP TIME SERIES
cross_chirp = cos(2*pi*(10+t/7).*t/len) + cos(2*pi*(len/2.8-t/6.0).*t/len);
% CREATE MODULATED SIN FUNCTION TIME SERIES
mod_freq=4*cos(2*pi*t/len)+len/5;
sin_of_sin = cos(2*pi*mod_freq.*t/len);
% CREATE the Distinct sinusoids example
midfreq = 20;
lowfreq = 5;
highfreq = 45;
distinct = cos(2*pi*midfreq.*t/len);
distinct(1:len/2) = cos(2*pi*lowfreq.*t(1:len/2)/len);
distinct(20:30) = cos(2*pi*highfreq .*t(20:30)/len);
% CREATE the chirp example
chirp = cos(2*pi*(10+t/7).*t/len);



[st_matrixst_timesst_frequencies] = st(sin_of_sin);
[st_matrix_chirpst_timesst_frequencies] = st(chirp);
[st_matrix_chirpsst_timesst_frequencies] = st(cross_chirp);
[st_matrix_distinctst_timesst_frequencies] = st(distinct);

contourf(st_timesst_frequenciesabs(st_matrix_chirps));
%mesh(abs(st_matrix_chirp));

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        936  2005-12-17 23:25  新建文件夹 (2)\stest.m

     文件      13710  2005-12-17 23:25  新建文件夹 (2)\stransform.m

     目录          0  2011-06-27 17:51  新建文件夹 (2)

----------- ---------  ---------- -----  ----

                14646                    3


评论

共有 条评论