MATLAB grader error when running code

19 ビュー (過去 30 日間)
Diane Peters
Diane Peters 2019 年 11 月 21 日
コメント済み: Diane Peters 2019 年 12 月 1 日
I'm using MATLAB grader for an assignment in my class, and this assignment has worked before, but now is not. The code that's being run is this:
num1 = [1]; %numerator of filter
den1 = [1 1]; %denominator of filter
filter1 = tf(num1, den1) %Filter transfer function object
And the error:
Undefined function 'tf' for input arguments of type 'double'.
Error in solution (line 3)
filter1 = tf(num1, den1) %Filter transfer function object
  2 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 11 月 21 日
編集済み: KALYAN ACHARJYA 2019 年 11 月 21 日
When I checked, no error
filter1 =
1
-----
s + 1
Continuous-time transfer function.
Diane Peters
Diane Peters 2019 年 11 月 21 日
Wow, that's weird. My student showed me the error and then I went into learner preview and saw it myself.

サインインしてコメントする。

採用された回答

Cris LaPierre
Cris LaPierre 2019 年 12 月 1 日
The likely problem is that your course is running only using base MATLAB, but it needs to have the Control System toolbox in order to run the tf function.
For courses being offered on grader.mathworks.com, you need to specifically add the products (toolboxes) you want your students to have access to to your course. See this page in the documentation to see how to add the Control System toolbox to your coures.
  1 件のコメント
Diane Peters
Diane Peters 2019 年 12 月 1 日
That was it, thank you very much.

サインインしてコメントする。

その他の回答 (0 件)

コミュニティ

カテゴリ

Help Center および File ExchangeFilter Analysis についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by