MATLAB grader error when running code
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Diane Peters
am 21 Nov. 2019
Kommentiert: Diane Peters
am 1 Dez. 2019
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 Kommentare
KALYAN ACHARJYA
am 21 Nov. 2019
Bearbeitet: KALYAN ACHARJYA
am 21 Nov. 2019
When I checked, no error
filter1 =
1
-----
s + 1
Continuous-time transfer function.
Akzeptierte Antwort
Cris LaPierre
am 1 Dez. 2019
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.
Weitere Antworten (0)
Communitys
Weitere Antworten in Distance Learning Community
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!