当前位置:网站首页>阵列信号处理仿真之四——Z变换分析阵列多项式
阵列信号处理仿真之四——Z变换分析阵列多项式
2022-06-10 18:06:00 【执手人间】
Z变换
对于线性等间距阵列,波束方向图可以用一个阵列多项式来表示。波束方向图在 ψ \psi ψ空间可以写成 B ψ ( ψ ) = e − j ( N − 1 2 ) ψ ( ∑ n = 0 N − 1 ω n e − j n ψ ) B_\psi(\psi)=e^{-j(\frac{N-1}{2})\psi}(\sum_{n=0}^{N-1}\omega_ne^{-jn\psi}) Bψ(ψ)=e−j(2N−1)ψ(n=0∑N−1ωne−jnψ)
我们定义 z = e j ψ z=e^{j\psi} z=ejψ
则可以写出 B z ( z ) = ∑ n = 0 N − 1 ω n z − n B_z(z)=\sum_{n=0}^{N-1}\omega_nz^{-n} Bz(z)=n=0∑N−1ωnz−n
这个表达式和z变换相似,把实变量 ψ \psi ψ映射到一个具有单位幅度的复变量z,变量 ψ \psi ψ是复变量z的相位。波束方向图可以写成 B ψ ( ψ ) = [ z − N − 1 2 B z ( z ) ] z = e j ψ B_\psi(\psi)=[z^{-\frac{N-1}{2}}B_z(z)]_{z=e^{j\psi}} Bψ(ψ)=[z−2N−1Bz(z)]z=ejψ
实数阵列权值
对于对称加权,有 ω ( n ) = ω ( N − 1 − n ) \omega(n)=\omega(N-1-n) ω(n)=ω(N−1−n)
z变换为 B z ( z ) = ∑ n = 0 N − 1 ω ( n ) z − n B_z(z)=\sum_{n=0}^{N-1}\omega(n)z^{-n} Bz(z)=n=0∑N−1ω(n)z−n
可以定义 M = N − 1 2 M=\frac{N-1}{2} M=2N−1
并写出 B z ( z ) = z − M { ω ( M ) + ω ( M − 1 ) [ z + z − 1 ] + ω ( M − 2 ) [ z 2 + z − 2 ] + ⋯ + ω ( 0 ) [ z M + z − M ] } Bz(z)=z^{-M}\{\omega(M)+\omega(M-1)[z+z^{-1}]+\omega(M-2)[z^2+z^{-2}]+\cdots +\omega(0)[z^M+z^{-M}]\} Bz(z)=z−M{ ω(M)+ω(M−1)[z+z−1]+ω(M−2)[z2+z−2]+⋯+ω(0)[zM+z−M]}
根据系数的对称性 B z ( z − 1 ) = z 2 M B z ( z ) B_z(z^{-1})=z^{2M}B_z(z) Bz(z−1)=z2MBz(z)
这里不再继续往后推导,经过分析,最终我们可以推出,多项式零点四个为一组,互为共轭和互为倒数的零点对,下面我们将分析一些实际的案例
案例
均匀加权阵列
B u i ( u ) = 1 N s i n ( π N d λ u ) s i n ( π d λ u ) , − 1 ≤ u ≤ 1 B_ui(u)=\frac{1}{N}\frac{sin(\frac{\pi N d}{\lambda}u)}{sin(\frac{\pi d}{\lambda}u)},-1\leq u \leq 1 Bui(u)=N1sin(λπdu)sin(λπNdu),−1≤u≤1
方向图的阵列出现在 B u ( u ) B_u(u) Bu(u)的分子为0而分母不为0时 s i n ( π N d λ u ) = 0 sin(\frac{\pi Nd}{\lambda}u)=0 sin(λπNdu)=0
零点的位置为 u n = ± n N ⋅ λ d , n = 1 , 2 , ⋯ , N − 1 2 u_n = \pm\frac{n}{N}\cdot\frac{\lambda}{d},n=1,2,\cdots,\frac{N-1}{2} un=±Nn⋅dλ,n=1,2,⋯,2N−1
我们记得第一零点的位置决定了主波束的宽度.所以,我们可以研究这样的技术,即约束第一个零点在一个特定点上,并调整其他零点的位置以得到一个理想的方向图形状。很多经常使用的方向图都是以这种方式开发出来的。
matlab代码
clear all;
close all;
N = 11;
theta=2*pi*[0:0.01:1];
w = 1/N*ones(N,1);
z = roots(w);
figure
plot(real(z),imag(z),'o');
hold on;
plot(cos(theta),sin(theta),'-');
plot(1.5*[-1,1],0*[1,1],'-')
plot(0*[1,1],1.5*[-1,1],'-')
hold off;
set(gca,'YTick',[-1.5 -1 -0.5 0 0.5 1 1.5])
axis square
grid on;
xlabel('{\it x}','Fontsize',14)
ylabel('\it y','Fontsize',14)
cosine,cosine平方

这两个零点图对应的波束方向图上篇文章中已经讲过这里不再多提。
matlab代码
clear all
close all
N=11;
n=conj(-(N-1)/2:(N-1)/2)';
w2=cos(pi*n/N);
w3=w2.*w2;
z2=roots(w2);
z3=roots(w3);
% ---------------- Zero Plot.
figure
%%%%%%%%%%%% plot 1
subplot(1,2,1);
plot(real(z2),imag(z2),'o');
axis([-1.2 1.2 -1.2 1.2])
axis('square')
grid on;
title('Cosine','Fontsize',14);
xlabel('Real','Fontsize',14)
ylabel('Imaginary','Fontsize',14)
theta=2*pi*[0:0.01:1];
hold on
plot(cos(theta),sin(theta),'--');
plot([-0.9 -0.65],[0.03 0.17])
text(-0.6,0.2,'2 zeros','Fontsize',12)
hold off
%%%%%%%%%%% plot 2
subplot(1,2,2);
plot(real(z3),imag(z3),'o');
grid on;
axis([-1.2 1.2 -1.2 1.2])
axis('square')
title('Cosine-squared','Fontsize',14);
xlabel('Real','Fontsize',14)
ylabel('Imaginary','Fontsize',14)
theta=2*pi*[0:0.01:1];
hold on
plot(cos(theta),sin(theta),'--');
text(-1.2,-1.7,(['Another zero is at (',num2str(real(z3(1))),', ',num2str(imag(z3(1))),')']),'Fontsize',12)
%text(1.6,-0.5,(['another zero at :']));
%text(1.7,-1,(['( ',num2str(real(z3(1))),' , ',num2str(imag(z3(1))),' )']))
hold off
Hamming,Blackman-Harris
Hamming窗权值 ω ( n ) = 0.54 + 0.46 c o s ( 2 π n ~ N ) \omega(n) = 0.54+0.46cos(\frac{2\pi \tilde n}{N}) ω(n)=0.54+0.46cos(N2πn~)
Blackman-Harris权值 ω ( n ) = 0.42 + 0.5 c o s ( 2 π n ~ N ) + 0.08 c o s ( 4 π n ~ N ) \omega(n) = 0.42+0.5cos(\frac{2\pi \tilde n}{N})+0.08cos(\frac{4\pi \tilde n}{N}) ω(n)=0.42+0.5cos(N2πn~)+0.08cos(N4πn~)
matlab代码
N=11;
n=conj(-(N-1)/2:(N-1)/2)';
w2=0.42+0.5*cos(2*pi*n/N)+0.08*cos(4*pi*n/N);
w3=0.54+0.46*cos(2*pi*n/N);
z2=roots(w2);
z3=roots(w3);
% ---------------- Zero Plot.
figure
%%%%%%%%%%%% plot 1
subplot(1,2,1);
plot(real(z2),imag(z2),'o');
axis([-1.2 1.2 -1.2 1.2])
axis('square')
grid on;
title('blackman','Fontsize',14);
xlabel('Real','Fontsize',14)
ylabel('Imaginary','Fontsize',14)
theta=2*pi*[0:0.01:1];
hold on
plot(cos(theta),sin(theta),'--');
plot([-0.9 -0.65],[0.03 0.17])
text(-0.6,0.2,'2 zeros','Fontsize',12)
hold off
%%%%%%%%%%% plot 2
subplot(1,2,2);
plot(real(z3),imag(z3),'o');
grid on;
axis([-1.2 1.2 -1.2 1.2])
axis('square')
title('Hamming','Fontsize',14);
xlabel('Real','Fontsize',14)
ylabel('Imaginary','Fontsize',14)
theta=2*pi*[0:0.01:1];
hold on
plot(cos(theta),sin(theta),'--');
text(-1.2,-1.7,(['Another zero is at (',num2str(real(z3(1))),', ',num2str(imag(z3(1))),')']),'Fontsize',12)
%text(1.6,-0.5,(['another zero at :']));
%text(1.7,-1,(['( ',num2str(real(z3(1))),' , ',num2str(imag(z3(1))),' )']))
hold off
边栏推荐
- Stream生成的3张方式-Lambda
- Common methods of stream flow lambder
- 【ceph】ceph配置源码分析|common/config.*
- Ibox system development core functions and some core source codes
- 光储直柔配电系统浅析
- VMware vCenter 各版本号对照表
- 商业智能BI的服务对象,企业管理者的管理“欲望”该如何实现?
- Huawei cloud hcde Cloud Road phase II: how does Huawei cloud help small and medium-sized manufacturing enterprises' digital transformation?
- makefile出问题:无法检测文件的更新
- 【存储】下一代分布式文件系统 研究
猜你喜欢

Custom types: structural bodies

低碳数据中心建设思路及未来趋势

AD18器件库导入简介

两部门发文明确校外培训机构消防安全条件

攻防演练 | 网络安全“吹哨人”:安全监控

Adobe Premiere基础-素材嵌套(制作抖音结尾头像动画)(九)

Developers changing the world - Yao Guang teenagers playing Tetris

QtMqtt 源码编译设置KeepAlive后ping包超时错误不返回问题修复(QMQTT::MqttNoPingResponse,QMQTT::ClientPrivate::onPingTimeo)

Developers changing the world - Yao Guang teenagers playing Tetris

The value of Bi in the enterprise: business analysis and development decision
随机推荐
How to set up salesmartly for Google Analytics tracking
[CEPH] CEPH configuration source code analysis | common/config*
Data URL
【数据库】结构化数据、非结构化数据、半结构化数据的区别
“数字化转型,数据先行”,谈谈数据治理对企业来说到底有多重要
Adobe Premiere基础特效(卡点和转场)(四)
The value of Bi in the enterprise: business analysis and development decision
如何正确理解商业智能BI的实时性?
5. Golang泛型与反射
Ruijie x32pro brush openwrt enable wireless 160MHz
低碳数据中心建设思路及未来趋势
数字化时代,企业为什么要做数字化转型?
数字化时代,企业如何进行数据安全治理,保障数据资产安全
Wechat applet, get the current page and judge whether the current page is a tabbar page
Adobe Premiere基础-素材嵌套(制作抖音结尾头像动画)(九)
改变世界的开发者丨玩转“俄罗斯方块”的瑶光少年
TSMC liudeyin: do not worry about semiconductor inventory correction and cooperation between the United States, Japan and South Korea. This year's performance will increase by 30%!
使用DAP-Link单独下载可执行文件到MM32F5微控制器
Db2 SQL PL的锚点类型和行数据类型
Adobe Premiere基础(轨道相关)(五)