Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

HELP how to solve this error code : Error using .* Matrix dimensions must agree.

2 vues (au cours des 30 derniers jours)
Yassine Bouchdoug
Yassine Bouchdoug le 21 Août 2014
Clôturé : MATLAB Answer Bot le 20 Août 2021
Hi, Well in fact I have a problem with my code which is generating the error below, could you help me to solve this please, here's a part of the code :
[val_maxfft(icurv,:),loc_maxfft(icurv,:)]=(max(Y0fft(:,1,icurv)));
freqY0=(1:Ndf)*df;
PhiY0_decal=-2*pi*(freqY0')*(loc_maxfft(icurv,:)-1);
PhaseY0_shift=complex(cos(PhiY0_decal),sin(PhiY0_decal));
Arg_Phase_shift=atan(imag(PhaseY0_shift)./real(PhaseY0_shift))
Y0fft=Y0fft.*PhaseY0_shift;
Y0_BP=Y0fft(loc_maxfft(icurv,:):loc_maxfft(icurv,:)+Ndfmax-1,1,1);
The error is generated for this line: Y0fft=Y0fft.*PhaseY0_shift;
And thank you for your help

Réponses (1)

Rick Rosson
Rick Rosson le 21 Août 2014
Modifié(e) : Rick Rosson le 21 Août 2014
What are the results of:
size(Y0fft)
size(PhaseY0_shift)
They need to be the same size and shape to use the .* operator.
  2 commentaires
Yassine Bouchdoug
Yassine Bouchdoug le 21 Août 2014
Here's the result :
size(Y0fft)
ans =
42823 1 2
>> size(PhaseY0_shift)
ans =
42823 1
I know that they have the same size, but I don't know how to do it, i''m a little confused.
Yassine Bouchdoug
Yassine Bouchdoug le 21 Août 2014
I know that they should* have the same size, but I don't know how to do it, i''m a little confused.
Sorry for the mistake.

Cette question est clôturée.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by