Réponse apportée
How to design a bistatic radar system?
Hi Liangjun, You are right that the reflection direction will be different for a bistatic system compared to a monostatic sys...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
To generate a random signal with the given PSD
Normally this is done by generating a filter according to the given PSD and then pass a white noise through the filter.

presque 14 ans il y a | 1

| A accepté

Réponse apportée
What is the relation between DFT and PSD of a signal
It can be shown that PSD can alternatively be estimated by the square of magnitude of FFT. You should be able to find it in most...

presque 14 ans il y a | 2

| A accepté

Réponse apportée
how to switch the value of a boolean.
b = ~a; c = ~b; or if you are looking for the functional form b = not(a); c = not(b);

presque 14 ans il y a | 1

| A accepté

Réponse apportée
how to generate white Gaussian noise
You can use |imnoise| from Image Processing Toolbox http://www.mathworks.com/help/toolbox/images/ref/imnoise.html

presque 14 ans il y a | 0

Réponse apportée
How can I make this following matrix
A = [1 2 3 4;3 2 1 4] B{1} = [1 1 1;1 1 1]; B{2} = [2 2 2;2 2 2]; B{3} = [3 3 3;4 4 4]; B{4} = [4 4 4;3 3 3]; C...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
How can make code to present this following case?
A = [1 2 3 4;3 2 1 4] B{1} = [1 1 1;1 1 1]; B{2} = [2 2 2;2 2 2]; B{3} = [3 3 3;4 4 4]; B{4} = [4 4 4;3 3 3]; R...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
Can i use real measurements as an group delay input in the fdesign.arbgrpdelay?How can i simulate,a filter through its group delay?
It looks like you didn't specify the weights in your code after 'Weights' parameter, try Hgd = design(hgd,'iirlpnorm','Weig...

presque 14 ans il y a | 0

Réponse apportée
FFT filter problemnot consistent responce (fdesign.arbgrpdelay)
Hi George, You designed an arbitrary group delay filter, so there is no frequency content change. What it does is to delay di...

presque 14 ans il y a | 0

Réponse apportée
Matlab命令mex -setup找不到C语言编辑器
Did you install gcc or Xcode? If not, you need to install them. If you did, you need to check if they are on your path.

presque 14 ans il y a | 0

Réponse apportée
saved images in matlab
You can dynamically change the file name. for example for m = 1:10 % ... fname = sprintf('name%d.jpg',m); ...

presque 14 ans il y a | 1

| A accepté

Réponse apportée
How do filter function work?
MATLAB's filter() function an implementation of direction form II, the detailed algorithm can be found at http://www.mathwork...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
How to write a for loop to look at the rows of a M X N matrix?
It looks like below is a simplified version of what you want to do |a| is a matrix with 6 rows and the max is found for every...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
Is there any way to get the .wav file exported after modifications in matlab?
You can use |wavwrite| http://www.mathworks.com/help/techdoc/ref/wavwrite.html Also |dsp.AudioFileWriter| if you have DSP ...

presque 14 ans il y a | 2

Réponse apportée
please help me to write matlab code for lagrange interpolation for order 1 through 3.
There are many Lagrange interpolation resources available online, just Google it. For example http://www.mathworks.com/matlab...

presque 14 ans il y a | 0

Réponse apportée
assiging values to matrix accrding to indexes using sub2ind
Try |accumarray| MAT = accumarray([Z X],DATA)

presque 14 ans il y a | 0

| A accepté

Réponse apportée
I would like find a matrix from a row and column vectors
If you want 501x201, then you may want to make |rr| a column and |xxb| a row rr = rr(:); xxb = xxb(:).'; c = bsxfun(@...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
Creating a string with sprintf() and assign a variable to it
Don't know what you are trying to do but here is an example. eval(sprintf('A%d = %s',1,'magic(3)')) As a general rule t...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
Digital low pass filter without signal processing toolbox
You can always go back to the literature and implement the equation yourself. Say if you want to design an FIR low pass filte...

presque 14 ans il y a | 0

Réponse apportée
writing values from cell array to txt file
Here is an example, you can insert your fid in the code and it should work c = {{'hello' 'yes'} {'no', 'goodbye'}} fprin...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
how to tell the class of a variable (non-numeric) in a program?
You can use |isa| >> help isa

presque 14 ans il y a | 0

| A accepté

Réponse apportée
Angle between a plane and horizontal
The angle between the two planes are the angle between the two normal vectors, so your approach is correct. I'm not sure why you...

presque 14 ans il y a | 1

| A accepté

Réponse apportée
Blank Space that isn't a Blank space
Does |deblank| work for you? At least worth a try. http://www.mathworks.com/help/techdoc/ref/deblank.html

presque 14 ans il y a | 0

| A accepté

Réponse apportée
generating autocorrelated time series based on data
I may not understand your statement correctly, but did you only try from first order to fourth order AR? I think you need set th...

presque 14 ans il y a | 0

Réponse apportée
Returning coordinates from a plot function
I would also suggest you to take a look at findpeaks function in case you need to detect multiple peaks. http://www.mathworks...

presque 14 ans il y a | 0

Réponse apportée
Radar Signal Processing - Community sought
The following page may be a good starting place to find some resources for MATLAB/Simulink http://www.mathworks.com/discovery...

presque 14 ans il y a | 1

Réponse apportée
Radar - CFAR Threshold and Probabilities (Noise and Swerling)
Like Wayne mentioned in the post, you may want to take a look at Phased Array System Toolbox. Another point regarding your R...

presque 14 ans il y a | 0

Réponse apportée
User input for plot axises titles during a script
You can use |sprintf| str = 'time'; title(sprintf('Automated plot of results over %s',str));

presque 14 ans il y a | 0

Réponse apportée
how to process cell array
c = cellfun(@(a,b) a(b),A,B,'UniformOutput',false) or c = arrayfun(@(x)A{x}(B{x}),1:length(A),'UniformOutput',false)

presque 14 ans il y a | 0

Réponse apportée
how to find phase angle for the FFT data of a transient signal ?
Why not just use |fft|? PSD contains only the power information so the phase information is lost.

presque 14 ans il y a | 0

Charger plus