Help with writing Assessments for Script-Based Learner Solutions

조회 수: 6 (최근 30일)
I am very new to matlab Grader.
For script-based solutions, to create assessments with
  • MATLAB Code — Write the assessment using MATLAB® code.
I do not know how to write this code. Could you recommend some documentation that may help me with this, please
I am looking at example Matlab is Awesome (simple fprintf to file) from Introduction to Programming, Input/Output

채택된 답변

Cris LaPierre
Cris LaPierre 2021년 2월 19일
편집: Cris LaPierre 2021년 2월 19일
I would suggest looking at the Assessment section of the Add Problem documentation page.
If you have not done so already, I would also suggest going through the Teaching with MATLAB training (ch 6 covers MATLAB Grader).
You may find some of the Getting Started with MATLAB Grader example problems helpful. The following examples use MATLAB Code assessments:
  • Write a function to calculate normalized sinc
  • Symbolic Taylor expansion
  • Definite integration using Simpson’s Rule
  • Analysis of stress-strain data
However, if you just want to see if a variable a student creates contains the same value(s) as a reference variable, you can just use the Variable equals reference solution test type from the drop down menu.
  댓글 수: 5
Teresa Perdicoulis
Teresa Perdicoulis 2021년 3월 29일
이동: Cris LaPierre 2023년 6월 14일
Thank you. I only manage to assess the variable that is the name of the table and not the columns. For instance T.VelocidadeAr I cannot acess.
Cris LaPierre
Cris LaPierre 2021년 3월 29일
이동: Cris LaPierre 2023년 6월 14일
What specifically about that column do you want to assess?
You can use "Variable equals reference solution" to check that the Learner's table T has the same variable names, data types, size, and values as T in the reference solution (or referenceVariables.T). However, if anything is different, students would get the message 'Variable T has an incorrect value.'.
If you want to just assess that column specifically, you would have to use a MATLAB Code assessment. The simplest approach would be to extract that column from both the learner and reference solutions and compare the values using assessVariableEqual.
VelocidadeAr = T.VelocidadeAr;
assessVariableEqual('VelocidadeAr',referenceVariables.T.VelocidadeAr)
You can also use the assert function instead of assessVariableEqual to create your own assessment test. When writing your own assessent test, you should follow the suggestions provided in the following post

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Assessments, Criteria, and Verification에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by