Question regarding Antenna toolbox example provided by mathworks ( beam pattern)

조회 수: 4 (최근 30일)
DM
DM 2015년 10월 28일
댓글: Chris Jagielski 2015년 11월 10일
This question is related to the Antenna toolbox in MATLAB. I have found an online example from Mathworks, below is the link which shows the example. In particular I am interested in only the first example (null steering)
http://www.mathworks.com/help/phased/examples/array-pattern-synthesis.html
I don't currently own the antenna toolbox, but I am trying to generate the same figure for the first example (null steering). My questions regarding the exisiting code on the link provided above is
1- Are
w, wd,wn
column or row vectors?
2- Is the product
wn'*wn equal to 1
if so why is it then even used in the current code (it doesn't change the computation) ?
I have tried to write down my own code to plot the pattern that is shown in this link (first figure) as function of theta
Ntx=10;
c=3e8;
fc=1e9;
lambda=c/fc;
theta=-100:1:100;
for k=1:1:length(theta)
h_desired=((1/sqrt(Ntx))*exp(i*(2*pi/lambda)*(lambda/2)*[0:1:(Ntx-1)].*sin(0*pi/180)))'; %desired direction
h_interference=((1/sqrt(Ntx))*exp(i*(2*pi/lambda)*(lambda/2)*[0:1:(Ntx-1)].*sin(40*pi/180)))'; %interference direction
h_test=((1/sqrt(Ntx))*exp(i*(2*pi/lambda)*(lambda/2)*[0:1:(Ntx-1)].*sin(theta(k)*pi/180)))';
rn = h_interference'*h_desired/(h_interference'*h_interference);
w_r = h_desired-h_interference*rn;
magnitude= abs(h_test'*w_r);
y(k)= (20*log10(magnitude));
end
figure
plot(theta,y,'r')
xlabel('theta')
ylabel('Normalized Power dB')
grid on
As you can see I don't obtain correct results, in particular the null at 40 degrees is almost -300 dB what is the problem, the example from mathworks gives -100db (please check link)?
Looking forward for your answers

답변 (1개)

Honglei Chen
Honglei Chen 2015년 10월 30일
The example actually belongs to Phased Array System Toolbox, not Antenna Toolbox.
1. These are columns
2. wn is the steering vector corresponding to the null direction. It is not normalized but what matters is its phase structure rather than the magnitude. It is used to project the return to the null direction and then remove it from the beam pattern.
Finally, the null is deep, the example figure simply set the lower limit of y axis to -100 dB to get a more balanced picture. A null means the response is close to 0, so theoretically it should -inf.
HTH
  댓글 수: 4
Chris Jagielski
Chris Jagielski 2015년 11월 10일
Yes wn'*wn equals to 10, in the example, because there are 10 antenna elements in the ULA.
Chris Jagielski
Chris Jagielski 2015년 11월 10일
In DM's code, you can change theta to, for example, -180:180 degrees. This will give the full azimuth range.
In the example, it only plots at -90:90 degrees.
Why does the example only show from -90 to +90 degrees? I have tried adding the 'AzimuthAngles' property in the plotResponse() function, but it does not work.
Here is an example that does not work, i.e. it still only displays from -90 to +90 degrees:
plotResponse(myULA,fc,c,'Weights',w,'AzimuthAngles',-120:120);

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Antennas, Microphones, and Sonar Transducers에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by