-
大小: 17.06MB文件类型: .zip金币: 2下载: 1 次发布日期: 2023-07-22
- 语言: Matlab
- 标签: TDOA Matlab localization
资源简介
该资源包含多种时延估计的方法,涉及时域、频域、自适应方法等,并利用多个分布的传感器数据,采用TDOA的方法估计出关注目标的位置。资源内包含matlab源代码、GUI代码、传感器数据等。
代码片段和文件信息
function output = clean_signal( input...
preprocessing_methods...
percentile_params...
spectrum_substraction_params...
time_gain_params)
%CLEAN_SIGNAL Cleans the signal (preconditioning)
% It applies the selected preconditioning methods in folder ‘preconditioning‘
% so detection will be then easier.Filters must be passed as strings inside
% ‘preprocessing_methods‘ cell array. Available options are:
% {remove_mean banda_pass time_gain spectral_substraction
% percentiletk}
addpath(‘preconditioning‘)
output = input;
for i=1:length(preprocessing_methods)
if (strcmp(preprocessing_methods{i}‘remove_mean‘))
output = output - mean(output);
break
end
end
for i=1:length(preprocessing_methods)
if (strcmp(preprocessing_methods{i}‘band_pass‘))
output = filter_passband(output);
break
end
end
for i=1:length(preprocessing_methods)
if (strcmp(preprocessing_methods{i}‘time_gain‘))
output = time_gain(output time_gain_params);
break
end
end
for i=1:length(preprocessing_methods)
if (strcmp(preprocessing_methods{i}‘spectral_substraction‘))
output = spectralsubstraction(output spectrum_substraction_params);
break
end
end
for i=1:length(preprocessing_methods)
if (strcmp(preprocessing_methods{i}‘percentile‘))
output = percentile(output percentile_params);
break
end
end
% TK should‘nt be applied as it is only convenient for impulsive signals and
% minke whales are not so TK removes them. Not useful in our case.
for i=1:length(preprocessing_methods)
if (strcmp(preprocessing_methods{i}‘tk‘))
output = teager_kaiser(output);
end
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2013-12-31 01:21 TDE-and-whale-localization-master\
文件 26 2013-12-31 01:21 TDE-and-whale-localization-master\.gitignore
目录 0 2013-12-31 01:21 TDE-and-whale-localization-master\GUI\
文件 23216 2013-12-31 01:21 TDE-and-whale-localization-master\GUI\interactive_TDE.fig
文件 17091 2013-12-31 01:21 TDE-and-whale-localization-master\GUI\interactive_TDE.m
文件 9077 2013-12-31 01:21 TDE-and-whale-localization-master\GUI\localization.fig
文件 10090 2013-12-31 01:21 TDE-and-whale-localization-master\GUI\localization.m
文件 1935 2013-12-31 01:21 TDE-and-whale-localization-master\GUI\main_GUI.fig
文件 2179 2013-12-31 01:21 TDE-and-whale-localization-master\GUI\main_GUI.m
目录 0 2013-12-31 01:21 TDE-and-whale-localization-master\algorithms_TDE\
文件 499 2013-12-31 01:21 TDE-and-whale-localization-master\algorithms_TDE\delay_gcc.m
文件 2345 2013-12-31 01:21 TDE-and-whale-localization-master\algorithms_TDE\delay_lms.m
文件 739 2013-12-31 01:21 TDE-and-whale-localization-master\algorithms_TDE\delay_xcorr.m
文件 1650 2013-12-31 01:21 TDE-and-whale-localization-master\algorithms_TDE\gcc.m
文件 2030 2013-12-31 01:21 TDE-and-whale-localization-master\clean_signal.m
目录 0 2013-12-31 01:21 TDE-and-whale-localization-master\docs\
目录 0 2013-12-31 01:21 TDE-and-whale-localization-master\docs\documents\
文件 12904 2013-12-31 01:21 TDE-and-whale-localization-master\docs\documents\Information on dataset and sensors .odt
文件 15121 2013-12-31 01:21 TDE-and-whale-localization-master\docs\documents\Resultados de las simulaciones.docx
文件 46232 2013-12-31 01:21 TDE-and-whale-localization-master\docs\documents\Resultados_li
文件 26039 2013-12-31 01:21 TDE-and-whale-localization-master\docs\documents\Resultados_li
目录 0 2013-12-31 01:21 TDE-and-whale-localization-master\docs\fotos\
目录 0 2013-12-31 01:21 TDE-and-whale-localization-master\docs\fotos\AED\
文件 118752 2013-12-31 01:21 TDE-and-whale-localization-master\docs\fotos\AED\AED_mAL_15downsample.png
文件 459141 2013-12-31 01:21 TDE-and-whale-localization-master\docs\fotos\Spectrogram.png
文件 147463 2013-12-31 01:21 TDE-and-whale-localization-master\docs\fotos\chirp_gccn_cc.png
文件 148065 2013-12-31 01:21 TDE-and-whale-localization-master\docs\fotos\chirp_gccn_cc_16.png
文件 146031 2013-12-31 01:21 TDE-and-whale-localization-master\docs\fotos\chirp_gccphat_cc.png
文件 150298 2013-12-31 01:21 TDE-and-whale-localization-master\docs\fotos\chirp_gccphat_cc_16.png
文件 414898 2013-12-31 01:21 TDE-and-whale-localization-master\docs\fotos\interference.png
文件 425023 2013-12-31 01:21 TDE-and-whale-localization-master\docs\fotos\interference2.png
............此处省略132个文件信息
相关资源
- Pattern Recognition and Machine Learning(高清
- MATLAB 编程 第二版 Stephen J. Chapman 著
- 均值滤波和FFT频谱分析Matlab代码
- 《MATLAB扩展编程》代码
- HDB3码、AMI码的MATLAB实现
- 3点GPS定位MATLAB仿真
- MATLAB数字信号处理85个实用案例精讲入
- matlab从入门到精通pdf94795
- 欧拉放大论文及matlab代码
- 跳一跳辅助_matlab版本
- 全面详解LTE MATLAB建模、仿真与实现
- MIMO-OFDM无线通信技术及MATLAB实现_孙锴
- MATLAB Programming for Engineers 4th - Chapman
- matlab 各种谱分析对比
- 分数阶chen混沌matlab程序
- 基于粒子群算法的非合作博弈的matl
- MATLAB车流仿真 包括跟驰、延误
- matlab空间桁架计算程序
- 基于MATLAB的图像特征点匹配和筛选
- DMA-TVP-FAVAR
- GPS信号的码捕获matlab代码.7z
- 一维光子晶体MATLAB仿真代码吸收率折
- newmark法源程序
- 传统关联成像、计算鬼成像matlab
- pri传统分选算法
- 摆动滚子推杆盘形凸轮设计
- 医学图像重建作业matlab源码
- Matlab实现混沌系统的控制
- 检测疲劳驾驶
- Matlab锁相环仿真-Phase Locked Loop.rar
评论
共有 条评论