Réponse apportée
Adding AWGN to a Signal
If you have Communication Toolbox or Communication System Toolbox, you can use awgn http://www.mathworks.com/help/toolbox/com...

environ 14 ans il y a | 0

Réponse apportée
How to find the position in cell arry?
D = {[1 2];[1 4];[1 6];[2 4];[2 5];} c = [1 6] [~,~,idx] = intersect(c,cell2mat(D),'rows')

environ 14 ans il y a | 0

| A accepté

Réponse apportée
Chars with white space
You can try |deblank| http://www.mathworks.com/help/techdoc/ref/deblank.html

environ 14 ans il y a | 2

Réponse apportée
need some help regarding uniform rectangular array in phased array system toolbox
Are you trying to do the beamforming or simply want to see the radiation pattern steered? Here is one simple example showing the...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
Facing some problem in uniform rectangular array
Hi Najam, The default operating frequency range of an isotropic antenna element is set to between 300 MHz and 1 GHz, as you c...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
Median Filtering
Take a look at the following doc page http://www.mathworks.com/help/toolbox/images/ref/medfilt2.html

environ 14 ans il y a | 1

Réponse apportée
Multidimensional Array indexing to a single vector
sum(B(1:5,:)>10)>0

environ 14 ans il y a | 0

Réponse apportée
x-coordinate of peaks in 1D plot
You can use |findpeaks| http://www.mathworks.com/help/toolbox/signal/ref/findpeaks.html

environ 14 ans il y a | 0

Réponse apportée
two matrix problem
A=[1; 1; 1; 1; 1; -1 ;-1 ;-1 ;1 ;1 ;1 ;1 ;1]; B=[0.4; -0.2; -0.2; -0.25; 0.6; -0.3; 0.4; 0.2; 0.5; 0.3; -0.8; -0.9; 0.9]; ...

environ 14 ans il y a | 0

Réponse apportée
FIR by using Frequency Sampling Methods
You may want to take a look at |firls| http://www.mathworks.com/help/toolbox/signal/ref/firls.html

environ 14 ans il y a | 0

Réponse apportée
FSK modulation and demodulation
You can use Communication System Toolbox or Communication Blockset http://www.mathworks.com/help/toolbox/comm/ref/mfskmodulat...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
Fit a curve of equation of form y = ax^b to data
If you have Curve Fitting Toolbox, you can use that to do an exponential fitting directly http://www.mathworks.com/help/toolb...

environ 14 ans il y a | 1

| A accepté

Réponse apportée
tfestimate
Hi arttu, According to the documentation, the computation is Cyx/Cxx. http://www.mathworks.com/help/toolbox/signal/ref/tfe...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
Levinson Algorithm
Have you tried |levinson| in MATLAB? help levinson BTW I'm not quite sure if I understand your Rxx. Are you referring to...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
plot a signal with a "marker"
I don't know exactly what you mean, but try the following code and see if one of them match your needs. x = 1:10; y = 1:...

environ 14 ans il y a | 0

Réponse apportée
FIR Parks-McClellan
Parks-McClellan is an algorithm for filter design. It does not use window. Spectrogram is normally used to view the signal since...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
arrayfun for function of multiple outputs of different sizes
rep = 10 x = randi(rep,1,rep) [resultA,resultB] = arrayfun(@f,x,'UniformOutput',false)

environ 14 ans il y a | 0

Réponse apportée
bessel functions
The iteration should go to infinity but yours stop at 3. In fact, this kind of implementation has another numerical issue, s...

environ 14 ans il y a | 0

Réponse apportée
strfind using two strings
What's wrong if you just do them separately and then see if there is an intersection? x1 = num2str(rand(1,10)>0.5) xloc1...

environ 14 ans il y a | 0

Réponse apportée
The class has no property or method named 'setCurncy'
It is not a static method, so I think you should use obj.curncy = obj.setCurncy(symbol);

environ 14 ans il y a | 0

Réponse apportée
MMSE equalizer
It seems you don't have Communication System Toolbox correctly installed. What is your result of the following command? >>v...

environ 14 ans il y a | 0

Réponse apportée
for and parfor
To use PARFOR, each iteration has to be independent to each other. This is not always possible. The following document may be us...

environ 14 ans il y a | 2

Réponse apportée
create a matrix!
repmat(col,2,1) or repmat(col,numel(row),1)

environ 14 ans il y a | 1

| A accepté

Réponse apportée
size
Because VAR_START is a 1x17 vector, i.e., number of rows is 1 and number of columns is 17

environ 14 ans il y a | 1

Réponse apportée
How to clear "last warning"?
warning('')

environ 14 ans il y a | 2

| A accepté

Réponse apportée
performing of nearfield beamforming using phased array toolbox
Hi Alexey, Phased Array System Toolbox currently can only deal with plane wavefront. You may need to write some custom code to s...

environ 14 ans il y a | 1

| A accepté

Réponse apportée
3D directional antenna pattern
I couldn't really comment on the pattern itself but I think part of the issue is that your color is not appropriately applied. Y...

environ 14 ans il y a | 0

Réponse apportée
For Loop
Apparently your k_hat is a scalar. It is probably changing in each iteration because the t you passed into E_Test is different. ...

environ 14 ans il y a | 0

| A accepté

Réponse apportée
covariance matrix estimation in MVDR beamforming
That depends on whether you want to process your signal as narrow band or wide band. If you want narrow band, then you can treat...

environ 14 ans il y a | 0

Réponse apportée
Efficient table lookup
On top of Sean's answer. In case your grid is not uniform (although it seems that they are based on your description), you can u...

environ 14 ans il y a | 0

Charger plus