Effacer les filtres
Effacer les filtres

Operands to the || and && operators must be convertible to logical scalar values error

1 vue (au cours des 30 derniers jours)
I get an operators error... Not sure why. Can you help out?
Here is the code:
while count<=i
mfg=G(count)
if mfg == 27 && mfgdate2 >= 1946 && mfgdate<= 1974 || mfg == 27 && mfgdate>= 1983 && mfgdate<= 1988
MfgScore(count,:)=3;
end
count=count+1;
end

Réponse acceptée

Walter Roberson
Walter Roberson le 13 Nov 2017
Either mfgdate or mfgdate2 are not scalar. You probably need to index them with count
It is suspicious that you use mfgdate2 only once in the expression

Plus de réponses (1)

Faustino Quintanilla
Faustino Quintanilla le 13 Nov 2017
Fixed by adding count to elseif statement:
while count<=i
mfg=G(count);% Priority idnetifier
if mfg == 15
MfgScore(count,:)=5;
elseif mfg == 20
MfgScore(count,:)=5;
elseif mfg == 8 && mfgdate2(count)>= 1967 && mfgdate2(count)<= 1998
MfgScore(count,:)=4;
elseif mfg == 9 && mfgdate2(count)>= 1960 && mfgdate2(count)<= 1971
MfgScore(count,:)=2;
elseif mfg == 27 && mfgdate2(count)>= 1946 && mfgdate(count)<= 1974 || mfg == 27 && mfgdate(count)>= 1983 && mfgdate(count)<= 1988
MfgScore(count,:)=3;
elseif mfg == 1 && mfgdate2(count)>= 1949 && mfgdate2(count)<= 1969
MfgScore(count,:)=5;
elseif mfg == 13 && mfgdate2(count)>= 1963 && mfgdate2(count)<= 1964
MfgScore(count,:)=2;
elseif mfg == 19 && mfgdate2(count)>= 1962 && mfgdate2(count)<= 1967
MfgScore(count,:)=2;
end
count=count+1;
end
  1 commentaire
Walter Roberson
Walter Roberson le 13 Nov 2017
I find it suspicious that
elseif mfg == 27 && mfgdate2(count)>= 1946 && mfgdate(count)<= 1974 || mfg == 27 && mfgdate(count)>= 1983 && mfgdate(count)<= 1988
is the only place that uses mfgdate instead of mfgdate2, and that in the middle of the expression mfgdate2 is the lower bound but mfgdate is the upper bound. It would make more sense to me if you had
elseif mfg == 27 && mfgdate2(count)>= 1946 && mfgdate2(count)<= 1974 || mfg == 27 && mfgdate(count)>= 1983 && mfgdate(count)<= 1988

Connectez-vous pour commenter.

Catégories

En savoir plus sur Audio I/O and Waveform Generation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by