필터 지우기
필터 지우기

factor directional antenna array

조회 수: 1 (최근 30일)
Pomisov Andrey
Pomisov Andrey 2012년 10월 15일
Hello! How does the use of Phased Array System Toolbox to calculate the ratio of the simulated directional antenna array?
  댓글 수: 2
Honglei Chen
Honglei Chen 2012년 10월 16일
Hi Pomisov, could you clarify what you mean by ratio?
Pomisov Andrey
Pomisov Andrey 2012년 10월 16일
Directive gain of the antenna array

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

채택된 답변

Honglei Chen
Honglei Chen 2012년 10월 18일
편집: Honglei Chen 2012년 10월 22일
Hi Pomisov,
There are two ways you can see the directivity information.
The first one is to plot the radiation pattern. For example
fc = 3e8; c = 3e8;
h = phased.ULA(4,0.5);
plotResponse(h,fc,c,'format','polar')
You can also use ArrayGain. It is the SNR gain achieved by the array compared to a single element. It is not exactly the directivity but it is related to that.
fc = 3e8; c = 3e8;
h = phased.ULA(4,0.5);
hag = phased.ArrayGain('SensorArray',h,'PropagationSpeed',c);
% calculate array gain at boresight in dB
g = step(hag,fc,[0;0])
HTH,
  댓글 수: 1
Pomisov Andrey
Pomisov Andrey 2012년 10월 21일
But how do I calculate it is numerically Directive gain of the antenna array???

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

추가 답변 (1개)

Pomisov Andrey
Pomisov Andrey 2012년 10월 21일
But how do I calculate it is numerically Directive gain of the antenna array???
  댓글 수: 1
Honglei Chen
Honglei Chen 2012년 10월 22일
Does the code above using ArrayGain works for you? If not, could you give me a simplified example? Thanks.

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

카테고리

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