Clear Filters
Clear Filters

How to excite each antenna with a different level of power by using phased array toolbox or antenna toolbox?

1 view (last 30 days)
Hello everyone
I want to excite each antenna with a different level of power in a URA, and then see the array pattern. How can I do that by using phased array toolbox or antenna toolbox?
Thanks in advance. Xining yu

Accepted Answer

Honglei Chen
Honglei Chen on 3 Aug 2016
You can do this by passing in a weight vector to array. For example, say you have an 8-element array and you want to excite it each element at a different level so as if it has a Hamming window on it, you can do
array = phased.ULA(8);
fc = 3e8;
w = hamming(8);
pattern(array,fc,'Weights',w)
HTH

More Answers (0)

Community Treasure Hunt

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

Start Hunting!