Réponse apportée
What are the values used for initialization of matrices in kalman filter algorithm?
What is your 2D motion model? All these parameters depend on your motion model so there is not a common setting for all situatio...

plus de 8 ans il y a | 0

Réponse apportée
How can i get the exact peak point on music algorithms?
Not sure I understand exactly what you question, are you saying you have a MUSIC spectrum and want to find the peak location? If...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Collector for Uniform Linear Array
You may be using an older release where the using the class name to do a function call is not supported yet, could you try the f...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Why i can't plot a spectrum of a rectangular window function?
There is a mistake in your plotting command. Because the spectrum is in frequency domain, you need to have a frequency axis inst...

plus de 8 ans il y a | 1

Réponse apportée
How come the 'b' coefficients are not constant when designing a FIR filter with the function fir1 and the 'rectwin' option?
The default window for |fir1| is Hamming. So |fir1(20,0.1)| will be the same as |fir1(20,0.1,hamming(20+1))|. This means if you ...

plus de 8 ans il y a | 0

Réponse apportée
Complementery and barker code
Here is a radar example for using PhaseCodedWaveform. <https://www.mathworks.com/help/phased/ug/basic-radar-using-phase-code...

plus de 8 ans il y a | 0

Réponse apportée
collect 400 samples from a LFM (5MHz bandwidth) signal modulated on 18GHz
Your sampling rate is set at fs, which is about 20 MHz, this means your Nyquist is about 10 MHz, regardless what your carrier is...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How to generate complex envelop signal using chirp function
One way to get the complex chirp is to form analytical signal, e.g., f1 = 0; f2 = 10; t = 0:0.01:1; xi = chirp(t,f1,...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How to shift a filter into higher frequency band?
The following link may be helpful to you <https://www.mathworks.com/help/dsp/examples/complex-bandpass-filter-design.html> ...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
rotate elements in phase.ConformalArray
Phased Array System Toolbox currently does not have a parameter for this. Thanks for the question and I'll take note for the req...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Hi, How to plot the output signal from "Narrowband Transmit Array" block?
What information are you trying to plot? The output of transmit array block are signals in time domain, the directional informat...

plus de 8 ans il y a | 0

Réponse apportée
How to include element response in collectPlaneWave
I'm not an expert on CBSA, but steering vector computation does seem to account for the element response. When I ran your exampl...

plus de 8 ans il y a | 0

Réponse apportée
using antenna element designed from Antenna Toolbox in Phased Array Toolbox
You can just do something like ant = dipole; antarray = phased.ULA('Element',ant); HTH

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Uniform Circular Array - Consist of 4 Half wave Dipole Antenna
Could you elaborate what is wrong with the result? The code runs without any issue so I'm not sure what issue you ran into. Note...

plus de 8 ans il y a | 0

Réponse apportée
View helix elements the viewArray
This currently not supported in Phased Array System Toolbox, We'll look into if this can be added in the future. Thanks.

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How to access 'TextBox' in viewArray figure
Once you run |viewArray|, you can do findall(gcf,'Type','TextBox') It should return the all text boxes in the figure and...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Where to find the phased.URA steering vector equation
You can find the general equation here at <http://www.antenna-theory.com/arrays/arrayfactor.php> There is a one to one map...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Move phased.conformalArray phase reference center
For a conformal array, you define the position of each element in an [x;y;z] format, then there is an implicit origin for these ...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
how to use sprintf with fullfile
Might be because sprintf('%d%02d.txt',i) You specified two formats but only one input. Maybe one of them is not needed?...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
Assigning multiple variables vectors from a cell array
I would just do the following and then access them using 3rd indices reshape(cell2mat(cellArray),[size(cellArray{1}) length...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
How to build the following vectors
Not sure I understand the rule for the first one, but here is my guess [-2:2, 5:5:35] and for the second one 4.5:-0...

plus de 8 ans il y a | 0

Réponse apportée
Help needed plotting a graph
You need to use ./, like y=sin(x).^2./x.^2 HTH

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
x,y,z plot and temperature
Is it something like this? x = rand(100,1); y = rand(100,1); z = rand(100,1); t = rand(100,3); scatter3(x,y,z,2...

plus de 8 ans il y a | 1

| A accepté

Réponse apportée
what is the difference between hold and plot of two curves in the same figure ?
If that's all you need, for the practical purpose, there isn't much difference. However, the internal settings in the two figure...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Repeating a row vector in MATLAB until it reaches a specified length.
Here is one way to do it k_new = k(mod(0:length(j)-1,length(k))+1) HTH

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Documentation or code details of signal.internal.getToneFromPSD that was called in snr.m
It is in the internal package, as indicated by the name signal.internal.*. This means that the function is only intended for int...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Generate portion of circular array elements
You can do both. You can either compute the position and normal of these elements and put them in a ConformalArray, see the firs...

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
Why do I get the error "Too many input arguments"
It should just be x0=filter(LPF0,x); the coefficients is already in LPF0. HTH

plus de 8 ans il y a | 0

Réponse apportée
how to turn off the legend in Phased array Pattern
Once you get the plot, you can just do legend off HTH

plus de 8 ans il y a | 0

| A accepté

Réponse apportée
how to calculate the indices's distance of a vector using the data of a matrix?
Not sure if I missed anything but looks to me this can be done by sum(d(sub2ind(size(d),x(1:end-1),x(2:end)))) HTH

plus de 8 ans il y a | 0

Charger plus