Matlab Grader - Determining if a variable is a function handle.
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Justin Wyss-Gallifent
le 15 Juin 2020
Modifié(e) : Cris LaPierre
le 15 Juin 2020
I'm writing a Matlab Grader assignment in which I'd like the students to define a function, say f, as a function handle. I'd then like an assessment test which verifies this. I figured an assessment test in Matlab code which simply said:
isa(f,'function_handle')
would do the job but this registers as true (in Matlab Grader) even when f is not a function handle.
7 commentaires
Adam Danz
le 15 Juin 2020
Modifié(e) : Adam Danz
le 15 Juin 2020
Hmmmm..... that's fishy. So, the assert(isa(f,'function_handle')) line does throw an error when f is f=5? Why would the isa() function work when it's inside of assert() but not outside of assert()? Unfortunately I haven't used the grader and can't fiddle with it right now.
Réponse acceptée
Cris LaPierre
le 15 Juin 2020
Modifié(e) : Cris LaPierre
le 15 Juin 2020
Assessment tests must assert the result. They do not recognize logical results as answers to the test. So the issue is not that false is being marked as correct. The isa(f,'function_handle') is returning false. It is that no assert has told Grader the result is incorrect.
Put another way, assessment tests are correct unless the code returns an error. Assert throws an error if the condition is false. So does the built-in assessVariableEqual function.
2 commentaires
Plus de réponses (0)
Communautés
Plus de réponses dans Distance Learning Community
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!