version 1.5, 2001/06/12 21:05:31
|
version 1.8, 2001/07/13 16:15:01
|
Line 62
|
Line 62
|
the response to go in. It checks all styles of numerical |
the response to go in. It checks all styles of numerical |
supported in CAPA. Possible args are: |
supported in CAPA. Possible args are: |
<ul> |
<ul> |
<li><i>answer</i> required, specifies the correct answer, must be a perl list</li> |
<li><i>answer</i> required, specifies the correct answer, may be either a perl list or scalar</li> |
<li><i>type</i> optional, CAPA style str args, cs/ci/mc</li> |
|
<li><i>units</i> optional, specifies unit of correct answer, CAPA style</li> |
<li><i>units</i> optional, specifies unit of correct answer, CAPA style</li> |
</ul> |
</ul> |
</li> |
</li> |
<li> |
<li> |
|
<b><stringresponse></b> implements a string answer, |
|
it needs an internal <b><textline></b> for the |
|
response to go in. It can check the string for either case |
|
or order. |
|
<ul> |
|
<li><i>answer</i> required, specifies the correct answer, may be either a perl list or scalar</li> |
|
<li><i>type</i> optional, CAPA style str args, cs/ci/mc |
|
<ul> |
|
<li>cs - case senesitive, order important</li> |
|
<li>ci - case insenesitive, order important</li> |
|
<li>mc - case insenesitive, order unimportant</li> |
|
</ul> |
|
</li> |
|
</ul> |
|
<li> |
<b><essayresponse></b> implements a ungraded large |
<b><essayresponse></b> implements a ungraded large |
text response, it need an internal <b><textarea></b> |
text response, it need an internal <b><textarea></b> |
for the response to go in. |
for the response to go in. |
Line 523
|
Line 537
|
</tr> |
</tr> |
|
|
<tr> |
<tr> |
|
<td valign="top">map(seed;a,b,c,d;w,x,y,z)</td> |
|
<td valign="top">Option 1 - &map($seed,[\$w,\$x,\$y,\$z],[$a,$b,$c,$d]) or <br> |
|
Option 2 - &map($seed,\@mappedArray,[$a,$b,$c,$d]) <br> |
|
Option 3 - @mappedArray = &map($seed,[$a,$b,$c,$d]) <br> |
|
Option 4 - ($w,$x,$y,$z) = &map($seed,\@a) <br> |
|
where $a='A'<br> |
|
$b='B'<br> |
|
$c='B'<br> |
|
$d='B'<br> |
|
$w, $x, $y, and $z are variables</td> |
|
<td valign="top">Assigns to the variables $w, $x, $y and $z the values of the |
|
$a, $b, $c and $c (A, B, C and D). The precise value for $w .. depends |
|
on the seed. (Option 1 of calling map). |
|
In option 2, the values of $a, $b .. are mapped into the array, @mappedArray. The two |
|
options illustrate the different grouping. Options 3 and 4 give a consistent |
|
way (with other functions) of mapping the items. For each option, the group can |
|
be passed as an array, for example, [$a,$b,$c,$d] => \@a.</td> |
|
<td valign="top">In CAPA, the arguments are divided into three groups separated |
|
by a semicolon ;. In LON-CAPA, the separation is done by using [] brackets or |
|
using an array @a. Note the backslash (\) before the arguments in the |
|
second and third groups.</td> |
|
</tr> |
|
|
|
|
|
<tr> |
|
<td valign="top">rmap(seed;a,b,c,d;w,x,y,z)</td> |
|
<td valign="top">Option 1 - &rmap($seed,[\$w,\$x,\$y,\$z],[$a,$b,$c,$d]) or <br> |
|
Option 2 - &rmap($seed,\@rmappedArray,[$a,$b,$c,$d]) <br> |
|
Option 3 - @rmapped_array = &rmap($seed,[$a,$b,$c,$d]) <br> |
|
Option 4 - ($w,$x,$y,$z) = &rmap($seed,\@a) <br> |
|
where $a='A'<br> |
|
$b='B'<br> |
|
$c='B'<br> |
|
$d='B'<br> |
|
$w, $x, $y, and $z are variables</td> |
|
<td valign="top">The rmap functions does the reverse action of map if the same seed |
|
is used in calling map and rmap. </td> |
|
<td valign="top">In CAPA, the arguments are divided into three groups separated |
|
by a semicolon ;. In LON-CAPA, the separation is done by using [] brackets or |
|
using an array @a. Note the backslash (\) before the arguments in the |
|
second and third groups.</td> |
|
</tr> |
|
|
|
<tr> |
|
<td valign="top">NOT IMPLEMENTED IN CAPA</td> |
|
<td valign="top">$a=&xmlparse($string) </td> |
|
<td valign="top">Runs the internal parser over the |
|
argument parsing for display. <b>Warning</b> This will |
|
result in different strings in different targets. Don't use |
|
the results of this function as an answer.</td> |
|
<td valign="top">New to LON-CAPA</td> |
|
</tr> |
|
|
|
<tr> |
<td valign="top">tex(a,b), tex("a","b")</td> |
<td valign="top">tex(a,b), tex("a","b")</td> |
<td valign="top">&tex($a,$b), &tex("a","b")</td> |
<td valign="top">&tex($a,$b), &tex("a","b")</td> |
<td valign="top">Returns a if the output mode is in tex otherwise |
<td valign="top">Returns a if the output mode is in tex otherwise |
Line 808
|
Line 876
|
<address><a href="mailto:albertel@marvin.lite.msu.edu">Guy Albertelli</a></address> |
<address><a href="mailto:albertel@marvin.lite.msu.edu">Guy Albertelli</a></address> |
<!-- Created: Thu May 17 15:05:35 EDT 2001 --> |
<!-- Created: Thu May 17 15:05:35 EDT 2001 --> |
<!-- hhmts start --> |
<!-- hhmts start --> |
Last modified: Tue June 12 15:25 EDT 2001 |
Last modified: Fri Jul 13 12:10:52 EDT 2001 |
<!-- hhmts end --> |
<!-- hhmts end --> |
</body> |
</body> |
</html> |
</html> |