why conj is used in this example?(Scan_Radar_Using_a_Uniform_Rectangular_Array)
이전 댓글 표시
when i learn example in matlab: Scan_Radar_Using_a_Uniform_Rectangular_Array.
I have a question,why conj is used in this code?

In order to understand this question.I have tried phased.SteeringVector and phased.PhaseShiftBeamformer function. When scan_angle is 45(deg),the pattern excited by weights obtained by these functions is showned below.At the same time, it shows that when conj is used , the main lobe is directed to -45(deg).

In this way,why conj is used in the example to detect target?(Scan_Radar_Using_a_Uniform_Rectangular_Array)
답변 (1개)
Honglei Chen
2017년 5월 8일
0 개 추천
The confusion probably comes from the fact that the weights in radiator and pattern plot get treated slightly different.
In a beam pattern plot, the convention is to do an inner product of the steering vector and the signal vector, therefore the conjugate is automatically applied during the inner product stage.
However, in radiator, the weights are what gets directly applied to the signal. At each element, you can think of that a weight gets multiplied to the signal, it may or may not be the steering vector. so it needs a conjugate to point to the right direction.
HTH
댓글 수: 10
Xiaodi Lin
2017년 5월 8일
Honglei Chen
2017년 5월 9일
How do you generate xr_doa?
Xiaodi Lin
2017년 5월 9일
Honglei Chen
2017년 5월 9일
If you don't mind, could you share the script? It's hard to come up what's wrong by just looking at the code. thanks
Xiaodi Lin
2017년 5월 9일
Honglei Chen
2017년 5월 10일
You can send it to me via my author page or just upload it here. You can always delete it afterwards
Xiaodi Lin
2017년 5월 10일
Honglei Chen
2017년 5월 11일
Your file turns out to be just one line and I don't know how to break it down. Could you resend it with correct format? Or maybe attach or upload? Thanks
Honglei Chen
2017년 5월 17일
This is because you passed the signal through the dechirp. If you look at the help of dechirp, it shows that the signal gets conjugated. So if you want to use dechirped signal to do the DOA estimation, you need to conjugate it again, like
xr_doa = conj(xr_doa_up);
Alternatively, you can just use the signal before the dechirp, like
[y_doa,doas] = step(hdoa,xt);
HTH
Xiaodi Lin
2017년 5월 19일
카테고리
도움말 센터 및 File Exchange에서 Range and Doppler Estimation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



