php中文网 | cnphp.com

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
查看: 473|回复: 0

雷达模糊函数

[复制链接]

2614

主题

2621

帖子

9276

积分

管理员

Rank: 9Rank: 9Rank: 9

UID
1
威望
0
积分
6540
贡献
0
注册时间
2021-4-14
最后登录
2024-4-17
在线时间
665 小时
QQ
发表于 2022-5-17 16:44:58 | 显示全部楼层 |阅读模式
[mw_shl_code=applescript,true]clear all
clc
clf
taop = 1;   %脉冲宽度 100us
B = 10;        %带宽 10MHz
up_down = -1;    %正调频
x = lfm_ambg(taop,B,up_down);%计算模糊函数
taux = -1.1*taop:0.01:1.1*taop;
fdy = -B:0.01:B;
figure(1)
mesh(100*taux,fdy./10,x);
xlabel('Delay - \mus');
ylabel('Doppler - MHz');
zlabel('|\chi(\tau,fd)|');
title('模糊函数');
figure(2)
contour(100*taux,fdy./10,x)
xlabel('Delay - \mus');
ylabel('Doppler - MHz');
title('模糊函数等高线');
grid on
N_fd_0 = (length(fdy) + 1)/2;%fd = 0位置
x_tau = x(N_fd_0,;%时间模糊函数
figure(3)
plot(100*taux,x_tau)
axis([-110 110 0 1]);
xlabel('Delay - \mus')
ylabel('|\chi(\tau,0)|')
title('时间模糊函数')
grid on
N_tau_0 = (length(taux) + 1)/2;% tau = 0位置
x_fd = x(:,N_tau_0);%速度模糊函数
figure(4)
plot(fdy./10,x_fd);
xlabel('Doppler - MHz');
ylabel('|\chi(0,fd)|')
title('速度模糊函数')
grid on
x_db = 20*log10(x+eps);
[I,J] = find(abs(x_db+6)<0.09);
I = (I-B/0.01)/(1/0.01);
J = (J-1.1*taop/0.01)/(1/0.01);
figure(5)
plot(J*100,I/10,'.');
xlabel('Delay - \mus');
ylabel('Doppler - MHz');
axis([-110 110 -1 1]);
title('模糊函数6dB的等高线')
grid on[/mw_shl_code]





上一篇:python3 图片爬虫
下一篇:豆瓣爬虫到数据库
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|php中文网 | cnphp.com ( 赣ICP备2021002321号-2 )51LA统计

GMT+8, 2024-4-19 08:22 , Processed in 0.190683 second(s), 36 queries , Gzip On.

Powered by Discuz! X3.4 Licensed

Copyright © 2001-2020, Tencent Cloud.

申明:本站所有资源皆搜集自网络,相关版权归版权持有人所有,如有侵权,请电邮(fiorkn@foxmail.com)告之,本站会尽快删除。

快速回复 返回顶部 返回列表