How can I overcome the error "variable admit must be of data type logical instead of double".

2 visualizaciones (últimos 30 días)
How can I overcome the error "variable admit must be of data type logical instead of double"..I have to return logical values true or false using the function below.what is wrong with this?

Respuesta aceptada

Walter Roberson
Walter Roberson el 2 de Oct. de 2022
You assign the result of the comparisons to test1 and test2. But then you overwrite test1 and test2 with [] . [] is an empty double precision matrix, and you are overwriting the results of the comparisons.
Notice that the assignment to test1 and test2 are not definitions of the anonymous function, and so do not belong in that section of the code. But you are missing calls to the anonyous function in the test case section...

Más respuestas (0)

Categorías

Más información sobre Testing Frameworks en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by