How to solve this error "Operands to the || and && operators must be convertible to logical scalar values." ?
81 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nikhil
el 31 de Mayo de 2013
Comentada: Brian Fournet
el 28 de Feb. de 2021
Hello
I am doing project on object recognition in which during classification i got this error "Operands to the and && operators must be convertible to logical scalar values." how to solve this? please help me to get out of this!
3 comentarios
Arthur Joker
el 28 de Nov. de 2018
Hello, I'm using another software called Prescan. matlab 2017b will be started invoked by the prescan automatically. and then I got the error "Operands to the || and && operators must be convertible to logical scalar values". anyway, I can't modify the software of Prescan~
how to fix it if I can modify some configuration from Matlab?
Thanks!
Respuesta aceptada
James Tursa
el 31 de Mayo de 2013
You get this when one or both operands are arrays. E.g.,
>> [1 2 3] && [4 5 6]
??? Operands to the || and && operators must be convertible to logical scalar values.
Check the two expressions or variables you are using for the or && operation. You are using them as scalars but they are not.
0 comentarios
Más respuestas (2)
Walter Roberson
el 31 de Mayo de 2013
If the problem is occurring in your code, change the && or || to & or | respectively. That would get rid of the error message, but probably not the logic error.
If the problem is occurring in one of MATLAB's NN routines, then you have passed the wrong shape of data for some argument to the call.
2 comentarios
Walter Roberson
el 31 de Mayo de 2013
You have multiple problems:
1)
a < b < c
in MATLAB means
((a < b) < c)
The first part returns false (0) or true (1), so this expression becomes one of
0 < c
or
1 < c
which has a logical result.
To test if b is in the range a to c (exclusive), test
if a < b & b < c
2) Do not use "==" to compare strings. A string is a vector of characters, so you will get a vector result reflecting "is the first character F, true or false? Is the second character A, true or false?" The "==" would fail if the two are not the same length, just the same way that
[1 2] == [1 2 3]
is going to fail because of the different lengths.
Use strcmp() to compare strings.
3)
You need an "end" statement to terminate your "if" statement.
4)
The statement
while l;
needs additional code after it, terminating with an "end" statement. The code between the "while" and the "end" would be what is repeated. You can expression the action of doing nothing in the loop as
while l; end
What this would do is to test the variable "l", and if it consists entirely of non-zero values, then the loop body (with nothing in it) would be executed once. Then the loop would repeat and "l" would be tested again; if it was still all non-zero then the loop would repeat. Since nothing in the empty loop body changes "l" it is going to repeat infinitely if it repeats at all.
I recommend you read the introductory documents on MATLAB control statement syntax.
Nikhil
el 31 de Mayo de 2013
1 comentario
Iain
el 31 de Mayo de 2013
Your logic is definitely wrong.
hyp1_min(1)< hyp2_min(1) < hyp2_max(1) < hyp1_max(1) is evaluated as ((hyp1_min(1)< hyp2_min(1)) < hyp2_max(1)) < hyp1_max(1) (((0 or 1) < some_value) < some_value ((0 or 1) < some value)
match == 'FALSE', will return a 5-element result, however, if match == 'TRUE', it will throw an error. Use "strcmp" to do string comparisons.
Ver también
Categorías
Más información sobre Data Type Identification en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!