r 考试类型 num: answer Inf

r exam type num: answer Inf

我有一个 moodle 练习,其中数字答案是无穷大。 xml 文件生成没有问题,但是,在将问题导入 moodle 时出现 R。

这是练习的简化版本。

```{r data generation, echo = FALSE, results = "hide"}
sol<-Inf
```

Question
========

blblblbl


Solution
========

$x=\infty$

Meta-information
================
extype: num
exsolution: `r fmt(sol, 4)`
extol: 0.0001
exname: prob complemento 2

moodle 数值类型的问题可以有无限答案吗?

保存数值类型很重要,因为在某些数值 rng 实例中,答案可能不同于无穷大

我的理解是,在 Moodle 中没有正确的方法可以做到这一点。可能你已经看过这个讨论:https://moodle.org/mod/forum/discuss.php?d=406703.

就我个人而言,我会通过确保 data-generating 过程始终产生有限结果来避免该问题。

或者,如果您想将无穷大作为可能的答案,请将练习转换为单选题 (schoice),并将无穷大作为答案选项之一。要将数字转换为 single-choice 问题,请参阅此 R/exams 教程:http://www.R-exams.org/tutorials/static_num_schoice/.