博客
关于我
相控阵天线均匀线阵方向图(五)------方向图函数的不同表达形式
阅读量:559 次
发布时间:2019-03-09

本文共 1117 字,大约阅读时间需要 3 分钟。

一维线阵方向图的三种生成方法

基本问题

如何通过不同的表达形式得到一维线阵的同一个方向图?

源代码

以下是用于生成一维线阵方向图的三种方法的 MATLAB 源代码:

clc; clear all; close all;c = 3e8; % 光速f = 500e6; % 信号频率lambda = c / f; % 波长d = lambda / 2; % 阵元间距N = 8; % 阵元个数theta0 = 0; % 波束指向角度bujing = 0.1; % 扫描角取值范围n = [0:1:N-1]'; % 列矢量% 权值计算W = exp(1j * 2 * pi * f * n * d * sin(theta0 * pi / 180) / c);% 方法一F1 = zeros(size(n));for p = 1:length(theta)    V = exp(1j * 2 * pi * f * n * d * sin(theta(p) * pi / 180) / c);    B1(p) = W' * V;endF1 = abs(B1);F1 = 20 * log10(F1 / max(F1));% 方法二F2 = zeros(size(n));for p = 1:length(n)    B2(p) = sum(exp(1j * 2 * pi * f * n * d * (sin(theta(p) * pi / 180) - sin(theta0 * pi / 180)) / c));endF2 = abs(B2);F2 = 20 * log10(F2 / max(F2));% 方法三F3 = zeros(size(n));for p = 1:length(n)    t(p) = pi / 2 * (sin(theta(p)) - sin(theta0));    B3(p) = sin(N * t(p)) / sin(t(p));endF3 = abs(B3);F3 = 20 * log10(F3 / max(F3));% 绘图figure(1);plot(theta, F1, '-r*');hold on;plot(theta, F2, '-g*');hold on;plot(theta, F3, '-bo');grid on;xlabel('角度/度');ylabel('方向图');axis([-90 90 -50 0]);legend('法一', '法二', '法三');

仿真结果

通过上述三种方法,可以清晰地观察到一维线阵方向图的不同表现形式。每种方法都有其独特的特点和适用场景。

转载地址:http://wiapz.baihongyu.com/

你可能感兴趣的文章
Postgres like 模糊查询匹配集合
查看>>
Postgres 自定义函数内实现 in 操作符的递归查询
查看>>
Postgres 返回当前时间前后指定天数的集合
查看>>
postgres--vacuum
查看>>
postgres--wal
查看>>
postgres--流复制
查看>>
postgres10配置huge_pages
查看>>
PostgreSQL 10.0 preview sharding增强 - pushdown 增强
查看>>
PostgreSQL 10.0 preview 变化 - pg_xlog,pg_clog,pg_log目录更名为pg_wal,pg_xact,log
查看>>
PostgreSQL 10.1 手册_部分 II. SQL 语言_第 15章 并行查询_15.2. 何时会用到并行查询?...
查看>>
PostgreSQL 10.1 手册_部分 II. SQL 语言_第 9 章 函数和操作符_9.23. 行和数组比较
查看>>
PostgreSQL 10.1 手册_部分 III. 服务器管理_第 21 章 数据库角色
查看>>
Qt开发——网络编程UDP网络广播软件之服务器端
查看>>
Postgresql 12.9如何配置允许远程连接
查看>>
PostgreSQL 9.6 同步多副本 与 remote_apply事务同步级别 应用场景分析
查看>>
Postgresql CopyManager 流式批量数据入库
查看>>
PostgreSQL cube 插件 - 多维空间对象
查看>>
PostgreSQL Daily Maintenance - cluster table
查看>>
PostgreSQL on Linux 最佳部署手册
查看>>
PostgreSQL Oracle 兼容性之 - pipelined
查看>>