Réponse apportée
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)...

environ 11 ans il y a | 0

Réponse apportée
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...

environ 11 ans il y a | 0

Réponse apportée
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...

environ 11 ans il y a | 0

Réponse apportée
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...

environ 11 ans il y a | 0

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

Réponse apportée
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...

environ 11 ans il y a | 0

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

environ 11 ans il y a | 0

Réponse apportée
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

environ 11 ans il y a | 0

Réponse apportée
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...

environ 11 ans il y a | 1

Réponse apportée
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...

environ 11 ans il y a | 0

Réponse apportée
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...

environ 11 ans il y a | 0

Réponse apportée
[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...

environ 11 ans il y a | 0

A résolu


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

plus de 11 ans il y a

A résolu


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...

plus de 11 ans il y a

A résolu


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...

plus de 11 ans il y a

A résolu


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

plus de 11 ans il y a

Réponse apportée
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...

plus de 11 ans il y a | 0

Réponse apportée
[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. ...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 11 ans il y a | 1

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

plus de 11 ans il y a | 0

Réponse apportée
[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...

plus de 11 ans il y a | 1

| A accepté

Réponse apportée
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...

plus de 11 ans il y a | 0

Réponse apportée
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...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 11 ans il y a | 0

Réponse apportée
Radio buttons in GUI
You may want to use button groups http://www.mathworks.com/help/techdoc/ref/uibuttongroup.html

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 11 ans il y a | 0

| A accepté

Réponse apportée
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...

plus de 11 ans il y a | 0

Réponse apportée
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(...

plus de 11 ans il y a | 0

| A accepté

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

plus de 11 ans il y a | 0

Charger plus