Risposto
How to simulate automotive radar?
Have you looked at the following example? Would that be at the level you are interested? https://www.mathworks.com/help/phased/...

oltre 7 anni fa | 0

| accettato

Risposto
constantGammaClutter function usage?
These are high level steps but they look ok. I don't quite understand the last step though. What do you mean by "output of the c...

oltre 7 anni fa | 0

Risposto
Replicated.subarrays with taper
If you want to apply taper on the entire aperture, it might be easier to use the phased.PartitionedArray interface. You can then...

oltre 7 anni fa | 0

Risposto
The sequence to call beamforming and receiver ?
In Phased Array System Toolbox, receiver models thermal noise at the receiving elements so beamformer should happen afterwards. ...

oltre 7 anni fa | 0

Risposto
I want to learn the phased array antenna with Matlab
I would start with the following page https://www.mathworks.com/academia/student_version.html HTH

oltre 7 anni fa | 0

Risposto
Linear 45 degrees polarized antenna element
In R2018b, there is no easy way to specify a 45-degree short dipole. The easier way to achieve that is probably combine the fiel...

oltre 7 anni fa | 0

Risposto
[Phased Array Toolbox] Modelling an unmodulated continuous wave radar
A radar system is probably modulated. Since the modeling is done in baseband, for a single frequency continuous wave, that will ...

oltre 7 anni fa | 0

Risposto
Do I need a receiver channel when I using ULA?
The receiver also models the thermal noise in the receiver. If you need to include that effect, then you should not skip the rec...

oltre 7 anni fa | 0

| accettato

Risposto
How to use Signal Analyzer App inside of a script
Signal analyzer is capable of generating MATLAB script so you can run the script to accomplish what you did in the app. Maybe th...

oltre 7 anni fa | 0

Risposto
Plot RangeAngleResponse of ACC Example
It looks like you are using the first part of your code to generate xr and then the second part to do range-angle processing? If...

oltre 7 anni fa | 0

Risposto
parameters for backscatterRadarTarget and its target
For question 1, the answer is no. However, the RCS pattern is only defined within the range specified by azpatangs and elpatangs...

oltre 7 anni fa | 1

| accettato

Risposto
Why do "corr(x,y)" and "xcorr(x,y)" give different answers when x and y are simulated discrete samples of radar signals of form a*e^ib, with partially correlated randomized b values?
It would be helpful if you could provide a script showcasing the difference and explain why you think the two should be the same...

oltre 7 anni fa | 3

| accettato

Risposto
can i discretise a transfer function in "butter" toolbox Matlab?
Could you explain what you mean by discreization? Using your syntax, the output of butter is already a digital filter so I don't...

oltre 7 anni fa | 0

| accettato

Risposto
Duty cycle setting in phased.LinearFMWaveform
It will be helpful to show how you generated that plot. The duty cycle does not indicate how many pulses are there, it only sp...

oltre 7 anni fa | 0

Risposto
How to add noise to RangeAngleResponse in phased.array toolbox?
Here are my answers: The noise should be added in the raw signal. Normally the noise is not added on the range-Doppler response...

oltre 7 anni fa | 1

Risposto
How to create a steering vector toward specify DOA?
Looks like you are trying to simulate the received signal? Yes it can be done, but you haven't provide any info about the array ...

oltre 7 anni fa | 0

Risposto
Why do signals differ in fdesign.fracdelay and dsp.VariableFractionalDelay?
Your dsp.VariableFractionalDelay is actually order 4. If you do vfd = dsp.VariableFractionalDelay('InterpolationMethod', 'Farro...

oltre 7 anni fa | 1

Risposto
Where is the matlab code that outputs "RangeDopplerExampleData" in online Documentation: phased.RangeDopplerResponse System object; example "Range-Doppler Response of Pulsed Radar Signal Using Matched Filter" ?
That code is not available in the product. However, the example text does describe the setup of the simulation scene. With that ...

oltre 7 anni fa | 0

| accettato

Risposto
How can I compute all the possible differences of the vectors in a matrix?
If you have Statistics Toolbox, you can try idx = flipud(combnk(1:4,2)) A(idx(:,1),:)-A(idx(:,2),:) HTH

quasi 8 anni fa | 0

Risposto
Execute matrix in a "for loop"
Let's say your function is foo, you can do for ii = 1:size(m,2) y = foo(m(:,ii)); end HTH

quasi 8 anni fa | 0

| accettato

Risposto
Composite System Object for Code Generation or use in Simulink
If you don't intend to change your Taps during the simulation, you may want to consider setting it as Nontunable, like prop...

quasi 8 anni fa | 0

| accettato

Risposto
How to plot multiple filter response on the same filter visualizer?
To get XData and YData of phase noise visualization, you can do the following pn = comm.PhaseNoise; h = visualize(pn); x = h....

quasi 8 anni fa | 0

| accettato

Risposto
Filtering array of custom objects
You can probably try idx = arrayfun(@(x)strcmp(x.name,'foo'),stages); stages(idx); HTH

quasi 8 anni fa | 1

| accettato

Risposto
How to interpret this PSD plot?
You may want to do a detrend in your signal to get rid of the peak at DC, like pwelch(detrend(signal),[],nSamples/2,nSamples,sa...

quasi 8 anni fa | 0

Risposto
How to plot multiple filter response on the same filter visualizer?
How do you describe your filter? The following example plots two filter responses in one figure and you should be able to do sim...

quasi 8 anni fa | 0

Risposto
Problem in 3D plot of clutter,jammer and target of radar
It seems that the jammer is along the a single angle. You have not provided any info regarding the clutter so I have no idea wha...

quasi 8 anni fa | 1

Risposto
cross-correlation of two signal always shows unexpected 0 lag
You may want to try [r,lag] = xcorr(b-mean(b),c-mean(c),'coeff'); HTH

quasi 8 anni fa | 2

| accettato

Risposto
What is the meaning of 'operatingFrequency' parameter for SubbandMVDRbeamforming in the context when input signal is not modulated?
Currently SubbandMVDRBeamformer assumes the signal is modulated so it performs narrowband MVDR in each subband. If the signal is...

quasi 8 anni fa | 0

Risposto
Sound Source detection with DOA Estimation, Using audio BIN files of real time drone flying activity
There is an example using GCC-PHAT algorithm in Phased Array System Toolbox, you can find it at https://www.mathworks.com/help/...

quasi 8 anni fa | 0

| accettato

Risposto
Designing a filter from magnitude response plot
The following page is a good starting point for your task. https://www.mathworks.com/help/dsp/examples/arbitrary-magnitude-filt...

quasi 8 anni fa | 0

Carica altro