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

2 Ansichten (letzte 30 Tage)
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?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 2 Okt. 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...

Weitere Antworten (0)

Kategorien

Mehr zu Testing Frameworks finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by