frft matlab程序,有两个程序一个是关于frft的源程序-frft-matlab例程 - IMDN开发者社群-imdn.cn...

代码说明:

有两个程序一个是关于frft的源程序,一个是应用frft对线性调频信号进行检测的程序,原理是以变换阶数(不同的分数阶域)为变量对观测信号进行分数阶变换,形成信号能量在时频平面上的二维分布,在此平面上按阈值进行峰值点的二维搜索即可检测线性调频信号并估计其参数。(There are two procedures one on frft the source, one application frft linear FM signal detection process, the principle is to transform the order of (different fractional domain) as the independent variables on the observed fractional signal change, the formation of signal energy in two-dimensional time-frequency plane distribution in this plane, the peak threshold value by two-dimensional linear FM signal can be detected search and estimate its parameters.)

文件列表:

canshuguji.m,849,2010-04-22

frft.m,1538,2010-03-11

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是一份使用SVD-FRFT抑制海杂波的Matlab程序代码示: ```matlab clc; clear; close all; %% 加载雷达数据 load('radar_data.mat'); %% SVD-FRFT去海杂波 [m, n] = size(radar_data); NFFT = 2^nextpow2(m); % NFFT应为2的幂 fs = 1 / (t(2)-t(1)); % 计算采样频率 f = fs/2 * linspace(-1,1,NFFT); % 频率坐标 figure(1) plot(f, 20*log10(abs(fftshift(fft(radar_data,NFFT))))); % SVD-FRFT去海杂波 [U, S, V] = svd(radar_data); alpha = 1.5; % FRFT参数 for k = 1:n V(:,k) = frft(V(:,k), alpha); % 对V的每一列进行FRFT end S_new = zeros(m,n); S_new(1:n,1:n) = S(1:n,1:n); radar_data_new = U * S_new * V'; % 去除海杂波后的雷达数据 figure(2) plot(f, 20*log10(abs(fftshift(fft(radar_data_new,NFFT))))); %% 显示原始雷达数据和去海杂波后的雷达数据 figure(3) subplot(2, 1, 1) imagesc(t, range/1000, 20*log10(abs(radar_data))) title('原始雷达数据') xlabel('时间 (s)') ylabel('距离 (km)') colormap('jet') colorbar subplot(2, 1, 2) imagesc(t, range/1000, 20*log10(abs(radar_data_new))) title('去海杂波后的雷达数据') xlabel('时间 (s)') ylabel('距离 (km)') colormap('jet') colorbar ``` 其中,`radar_data.mat`是存储了雷达数据的Matlab数据文件。在程序中,首先加载雷达数据,然后使用SVD-FRFT算法去除海杂波,并绘制去除前后的雷达数据频谱图。最后,使用`imagesc`函数显示原始雷达数据和去海杂波后的雷达数据。注意,本程序仅供参考,具体的参数设置需要根据实际情况进行调整。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值