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

2 views (last 30 days)
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?

Accepted Answer

Walter Roberson
Walter Roberson on 2 Oct 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...

More Answers (0)

Categories

Find more on Testing Frameworks in Help Center and File Exchange

Tags

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!