Help with writing Assessments for Script-Based Learner Solutions

6 ビュー (過去 30 日間)
Teresa Perdicoulis
Teresa Perdicoulis 2021 年 2 月 19 日
移動済み: Cris LaPierre 2023 年 6 月 14 日
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 Center および File ExchangeAssessments, Criteria, and Verification についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by