Respondida
How can we plot the response of Phased.Radiator excited by given input ?
Not sure if I understand your question correctly but let's say you have an antenna array defined as ant = phased.ULA(4,0.5)...

alrededor de 11 años hace | 0

Respondida
How antenna array factor is related to FFT of antenna weights
FFT is simply a computation tool, you can interpret the result based on your application. Using your ULA as an example, the phas...

alrededor de 11 años hace | 0

Respondida
step method of phased.URA: where is my phaseshift?!
The return you see is the response of each element at the specified degree. There is no phase shift between them. If you want to...

alrededor de 11 años hace | 0

Respondida
psd vs pwelch in matlab
You should use |pwelch|. In R2009b, psd is deprecated because the resulting power spectral density is not properly normalized. T...

alrededor de 11 años hace | 0

Respondida
Is the radiating angle of phased.Radiator specifies the beam boresight angle ? What if the weights in phased.Radiator speifies weights to point beam to some other direction ? Can we see the output pattern of the phased.Radiator ?
You are right that the weights determines the steered beam direction, but the signal arrives at the target may not always come f...

alrededor de 11 años hace | 0

| aceptada

Respondida
microphone plot response documentation results different from execution results
The documentation is not up to date. Thanks for catching that. The plot is now counter clockwise so the positive angles are abov...

alrededor de 11 años hace | 0

Respondida
Does anyone knows how to use wiener filter as bandpass filter? I have a signal whose frequency is from 0 to 9 hz and i want to filter signal 0 - 0.25 Hz,0.25 - 0.5 Hz, 0.5 - 0.75 Hz and so on. If possible please post MATLAB code for the same.
To my understanding, Wiener filter and bandpass filter are two different things. The purpose of Wiener filter is to make the out...

alrededor de 11 años hace | 0

Respondida
Performance study of MIMO - OFDM
The following example may be helpful http://www.mathworks.com/help/phased/examples/beamforming-for-mimo-ofdm-systems.html

alrededor de 11 años hace | 0

Respondida
XCORR: How to find the location of the highest correlation on the actual data using XCORR
If you just need the highest peak location, you can simply use |max| [~,idx] = max(y1) HTH

alrededor de 11 años hace | 0

Respondida
problem about filter order in design tool
The reason for this discrepancy is because Hann window has a trailing zero at the end. And I believe in the info window, it didn...

alrededor de 11 años hace | 1

Respondida
Undefined function 'times' for input arguments of type 'struct'
If you are using doppler.jakes, it can only be used with channel object, as explained in the following documentation http://w...

alrededor de 11 años hace | 0

Respondida
Problem in plotting Frequency Response
On the fvtool menu bar, you can click Analysis -> Sampling Frequency to specify the sampling rate. fvtool will then scale the f...

alrededor de 11 años hace | 0

Respondida
[PhasedArraySystemToolbox] How to apply spectrum window
According to your code, you are comparing the signal you manually applied windowing with the result of matched filter when no wi...

alrededor de 11 años hace | 0

Resuelto


Nearest Numbers
Given a row vector of numbers, find the indices of the two nearest numbers. Examples: [index1 index2] = nearestNumbers([2 5 3...

más de 11 años hace

Resuelto


Simple equation: Annual salary
Given an hourly wage, compute an annual salary by multiplying the wage times 40 and times 50, because salary = wage x 40 hours/w...

más de 11 años hace

Resuelto


Who Has the Most Change?
You have a matrix for which each row is a person and the columns represent the number of quarters, nickels, dimes, and pennies t...

más de 11 años hace

Resuelto


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

más de 11 años hace

Respondida
FFT and IFFT: Change the values of complex number
Most likely you didn't maintain the symmetry when you setting this to zero. It would be helpful if you show the snippet where yo...

más de 11 años hace | 0

Respondida
[PhasedArrayToolbox] Why the graph doesn't reach the amplitude value?
Are you expecting it to be just like the first sample. If so, the waveform samples one period of pulse and it starts at time 0. ...

más de 11 años hace | 0

| aceptada

Respondida
How to find integral under the noise power spectrum
That's one way to do it, just make sure you also multiply the sum with the width of each bin. Alternatively, you can also use...

más de 11 años hace | 1

Respondida
Trajectory generation for robot
The following example may be helpful http://cn.mathworks.com/help/robotics/examples/path-planning-in-environments-of-differen...

más de 11 años hace | 0

Respondida
[PhasedArrayToolbox] IsotropicAntenna directivity issue
Hi Vitaly, You are right that the theoretical vale is 0 dBi. The directivity computation in this case is done using numerica...

más de 11 años hace | 1

| aceptada

Respondida
Where the parameters inside a simulink example are defined?
You may be able to find relevant information in the PreLoadFcn or InitFcn callbacks. you can access callbacks following the dire...

más de 11 años hace | 0

Respondida
Patch antenna modelling using phased.CustomAntennaElement object in phased array toolbox
Hi Frederick, The phased.CustomAntennaElement is not a physical modeling tool for Antenna. Its purpose is to model the measur...

más de 11 años hace | 0

| aceptada

Respondida
Merge multiple functions+scripts in single file
You can only declare subfunctions within a function so unless you are willing to rewrite your scripts into functions, you may no...

más de 11 años hace | 0

Respondida
Radio buttons in GUI
You may want to use button groups http://www.mathworks.com/help/techdoc/ref/uibuttongroup.html

más de 11 años hace | 0

| aceptada

Respondida
understanding how resp in phased.CustomAntennaElement works
Hi Philip, When you pass in |ang = [0 180]|, it is considered as two angles, az = 0 and az = 180. if you pass in |ang = [0;18...

más de 11 años hace | 0

| aceptada

Respondida
How to a use a User-Defined window function in the fdatool?
You just need to write a function to output that window. Then in fdatool, you can choose FIR, then set it to Window, and in t...

más de 11 años hace | 0

Respondida
How to use spectrum analyzer object to show a signal waveform ?
Its purpose is to show signal's spectrum fs = 1000; x = sin(2*pi*200*(0:1999)'/fs); hsb = dsp.SpectrumAnalyzer(...

más de 11 años hace | 0

| aceptada

Respondida
using plotResponse with ELANG
Hi Philip, You need to set H.ElevationAngleSource = 'Input port' and then run plotResponse(H,X,30) HTH

más de 11 años hace | 0

Cargar más