Réponse apportée
I am not able to run "rainpl(range,freq,rainrate,elev)" function on my MATLAb. It says the function is not defined. How can i add this function to my MATLAB liberay. Thank you.
|rainpl| ships in Phased Array System Toolbox. You can find out if you have the corresponding license by running |ver| in MATLAB...

environ 9 ans il y a | 0

Réponse apportée
phased.Radiator: what are the units of measurement of the output signal and what is the reference distance?
The radiator applies the antenna spatial response to the signal. In the simplest form, it essentially performs the following equ...

environ 9 ans il y a | 0

Réponse apportée
Estimate the states of a vehicle moving along the -axis with respect to constant velocity model. Also estimate the sensor error standard deviation. You can find the measurement vector and the update periods (dt) in the attached MATLAB data file.
This can be done using a Kalman filter, there are some discussion here at <https://dsp.stackexchange.com/questions/8860/kalma...

environ 9 ans il y a | 0

Réponse apportée
why conj is used in this example?(Scan_Radar_Using_a_Uniform_Rectangular_Array)
The confusion probably comes from the fact that the weights in radiator and pattern plot get treated slightly different. In ...

environ 9 ans il y a | 0

Réponse apportée
I can not create a matrix.
I don't know what your logic is but the code is behaving as expected. The first condition |(b(i)==c(j))| is always satisfied so ...

environ 9 ans il y a | 1

Réponse apportée
"butter" filter: Undefined function
Do you have Signal Processing Toolbox installed? You can find out by typing >> ver in the command window. HTH

environ 9 ans il y a | 0

Réponse apportée
There is no String property on the Figure class? GUI issue.
From the error message, it seems that the |handles.output1| variable points to a figure class, which does not have a string prop...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
How can I see all tabs in the Signal Analyzer app?
You may need to update your MATLAB to a newer version to see the other buttons. Based on the release notes at <https://www.ma...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
How to write C code generation for ' not available function for standalone generation' ?
Do you need to change your filter over the simulation, if not, then the |coder.extrinsic| approach, as outlined in the error mes...

environ 9 ans il y a | 2

| A accepté

Réponse apportée
Map array values relative to another array
Maybe something like this? b2 = reshape(interp1(a(:),b(:),a2(:),'linear','extrap'),size(a2)) HTH

environ 9 ans il y a | 0

| A accepté

Réponse apportée
How to use a designed filter to convolve a signal.
You may want to use filtered_signal = filter(Hd,signal); |filter| and |conv| is essentially the same except that |filter...

environ 9 ans il y a | 1

| A accepté

Réponse apportée
Matlab to read text fine line by line
Have you tried |fgetl|? <https://www.mathworks.com/help/matlab/ref/fgetl.html> HTH

environ 9 ans il y a | 0

Réponse apportée
Can´t declare strings - Doublequotes are invalid characters
According to release notes, declaring string using double quotes is introduced in R2017a, so you will not be able to use it in R...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
create echo radar pulses
The following example may serve as a good starting point. You need Phased Array System Toolbox to run the example. <https://w...

environ 9 ans il y a | 0

Réponse apportée
Phased Array Toolbox: Problem with Free space channel in implementing FSK radar. Phase shift depends only on carrier frequency and not on the base band signal
The FreeSpace channel assumes all signals are at the same frequency, or at least can be considered as in the same frequency. In ...

environ 9 ans il y a | 0

Réponse apportée
Time delay Calculation using FFT-Based Algorithm
You are using |max(z)| in your delay computation. But that gives you the maximum correlation, yet what you want is the location ...

environ 9 ans il y a | 3

| A accepté

Réponse apportée
Findpeaks outputs random values for distant targets!!
Haven't got chance to run your model. But what is the wrong value it reports when the target at 299m is not detected? Is it very...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
Process Data obtained from Staggered PRF
I'm not sure what you mean by simultaneously processing the data from two different PRFs, but what the example does is to proces...

environ 9 ans il y a | 0

Réponse apportée
Time Delay of Arrival of two acoustic signals from an array using Phased Toolbox
The default frqeuency range for the hydrophone is between 0 and 200 kHz. However, in your example, the carrier is set at 300 kHz...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
How to create steering vector for MUSIC algorithm for Time of Arrival
I'm not sure if I follow your algorithm. Do you have a reference? The steering vector in some sense captures the system configur...

environ 9 ans il y a | 0

Réponse apportée
How to plot array beampattern with Frost beamformer weights?
You can consider translating the weights to frequency domain to obtain the appropriate frequency response. Then you can compute ...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
Filterdesign of a given magnitude response
The following example might be helpful to you <https://www.mathworks.com/help/dsp/examples/arbitrary-magnitude-filter-design....

environ 9 ans il y a | 0

| A accepté

Réponse apportée
I can use “phased.SumDifferenceMonopulseTracker”to create a MonoPulse tracker, but how to plot the Sum or Difference beam?
The SumDifferenceMonopulseTracker only gives out the angle. It does not provide sum and difference result at this point. One way...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
Using the 'Radar Waveform Analyzer' in phased array toolbox how do I specify my own phased-coded pulse?
The Radar Waveform Analyzer does not take custom waveform at this point. However, all the analysis can be done using tools in Ph...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
Matched Filter for FMCW radar?
In general, matched filter is defined as the conjugated reversed waveform and that definition applies to FMCW waveform too. Howe...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
how can i plot axis with origin at a random point other than (0,0) as origin
Here is an example plot(0:9,0:9); set(gca,'XTickLabel',get(gca,'XTick')+98); set(gca,'YTickLabel',get(gca,'YTick')+10...

environ 9 ans il y a | 0

Réponse apportée
Subarray Simulation have different output by using similar method
Conceptually the two approach is equivalent. The discrepancy you see is related to how you generate the custom antenna in your s...

environ 9 ans il y a | 0

| A accepté

Réponse apportée
Forming a block diagonal matrix of one certain matrix?
eval(sprintf('Out = blkdiag(A%s);',repmat(',A',1,99))) HTH

plus de 9 ans il y a | 0

Réponse apportée
plotting sinuos curve using matlab
looks like it should be polarplot(phi,r) instead of polarplot(r,phi) HTH

plus de 9 ans il y a | 0

Réponse apportée
Envelope(signal,np,'peak') error in Matlab R2015b
Do you have another |envelope| function on your path? What does which envelope return? If it does not point to the one u...

plus de 9 ans il y a | 0

Charger plus