Borrar filtros
Borrar filtros

Operands to the || and && operators

4 visualizaciones (últimos 30 días)
Maria hassan
Maria hassan el 7 de Dic. de 2016
Respondida: Steven Lord el 7 de Dic. de 2016
Hi,
I am getting this massage: Operands to the and && operators must be convertible to logical scalar values.
Error in main (line 27) elseif model==2 model==3
what does this mean please regards

Respuestas (1)

Steven Lord
Steven Lord el 7 de Dic. de 2016
In the expression X && Y or X || Y, X and Y must both be scalar (as defined by isscalar, meaning the values have size [1 1]) and the commands logical(X) and (if necessary) logical(Y) must succeed.
Cases that will not work:
% X is not scalar
[1 2] && 1
[] && 1
% X cannot be converted to a logical
NaN && 5
Cases that will work:
% Both scalar, both convertible to logical
1 && 0
true && true
% X causes the comparison to short-circuit so Y is not checked
false && [1 2] % false AND anything is false
true || NaN % true OR anything is true

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by