In MATLAB Grader, how can I assess students' output? All I can do is to compare variables or keywords
4 次查看(过去 30 天)
显示 更早的评论
In MATLAB Grader, how can I assess students' output? All I can do is to compare variables or keywords
I want to make an exercise problem about printing star triangle out, as shown below.
*
***
*****
*******
*********
***********
However, it's quite tricky to make assessments
I can check whether they used the key word "for", and "fprintf", but not the results
this assessment will pass all the solutions with the keywords.
Will it be available to make variables about the output????
0 个评论
回答(1 个)
Cam Salzberger
2020-7-31
Hello Hyunjee,
As you specify the code to call the student's provided functions or scripts, you could call it within an evalc call. This will capture anything that would normally be printed to the command window, which you can then check for the presence of the asterisk pyramid.
-Cam
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!