Interactive tutor using app designer
4 views (last 30 days)
Show older comments
Good day Everyone,
I am working on an interactive tutor application using MATLAB app designer and one of the objectives is to create coding exercises within the application. Is it possible to prompt the user to enter code and to give feedback on it?
Thank you,
TS
2 Comments
Cris LaPierre
on 4 Jan 2021
There is also MATLAB Grader, which allows you design coding problems that are assessed automatically and allow you to provide real-time feedback.
Answers (1)
max
on 4 Jan 2021
What you will need for this is evil "eval".
Eval can calculate whatever the student has given you. You can catch and return errors to the student with "try / catch" and you can give a positive feedback if the created variable / solution / plot of the student is the one you desire.
1 Comment
max
on 4 Jan 2021
If the students task are as simple as "define a variable called x with the value 4" you could also just compare the input of the student with your correct solutions.
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!