我在像这样的枫木工作表中有疑问
q1 := Quiz("Find f'(x). f(x) = $P/x^2+ $T", 3,
proc () local p, t, temp, tg, answer;
p := (rand(0 .. 100))();
temp := (rand(1 .. 2))();
tg := [sin(x), cos(x)];
t := tg[temp];
Quiz:-Set(`$P` = p);
Quiz:-Set(`$T` = t);
answer := diff(p/x^2, x)+diff(t, x);
[diff(nextprime(p)/x^2, x)+t, diff(p/x, x), answer]
end proc,
style = multiplechoice, output = mapleta)
要导出它们,我使用以下代码
with(MapleTA);
currentdir("/path");
MapleTA:-Export([q1], "ques.zip");
当我尝试在mapleTA网站上导入它们时,我收到以下错误,
Errors loading the question bank, ques.zip : Reason: Error at line 1. Line ended while reading variable name (missing "=" at end of name?)
答案 0 :(得分:2)
来自Maple的导出zip文件是Maple T.A中的课程模块。
当您尝试在Maple T.A中将课程模块导入为问题库时,通常会出现您报告的错误。
要解决此问题,请转到Maple T.A中的问题库。并单击课程模块>进口。然后选择你从Maple获得的zip文件。