File:  [LON-CAPA] / loncom / html / adm / dragmath / applet / Maxima.html
Revision 1.1: download - view: text, annotated - select for diffs
Fri May 30 16:04:37 2008 UTC (16 years, 1 month ago) by www
Branches: MAIN
CVS tags: version_2_9_X, version_2_9_99_0, version_2_9_1, version_2_9_0, version_2_8_X, version_2_8_99_1, version_2_8_99_0, version_2_8_2, version_2_8_1, version_2_8_0, version_2_7_X, version_2_7_99_1, version_2_7_99_0, version_2_7_1, version_2_7_0, version_2_6_99_1, version_2_6_99_0, version_2_11_0_RC1, version_2_10_X, version_2_10_1, version_2_10_0_RC2, version_2_10_0_RC1, version_2_10_0, loncapaMITrelate_1, language_hyphenation_merge, language_hyphenation, bz6209-base, bz6209, bz5969, bz2851, PRINT_INCOMPLETE_base, PRINT_INCOMPLETE, HEAD, GCI_3, GCI_2, GCI_1, BZ5971-printing-apage, BZ5434-fox, BZ4492-merge, BZ4492-feature_horizontal_radioresponse
Bug #5713: Dragmath

<html>
<head>
<title>DragMath Maxima Example</title>

<script language="JavaScript">
var thedata;
var newwin;
var thenumber;
function edit(textarea)
{
    thenumber = textarea;
    thedata = document.forms['exampleform'].elements[textarea].value

    newwin = window.open("MaximaPopup.html","","width=565,height=400,resizable")
}
</script>
</head>


<body>
<DIV align=left><FONT face=Arial color=#000080 
size=6><STRONG>DragMath Maxima Example</STRONG></FONT></DIV>
<br><br>

<FORM name="exampleform">

<p>Factorise 20*x+5
<br>
<input type="text" id="data0" name="data0" cols="15" />
<input type="button" value="Editor" onclick="edit('data0')">
</p>

<p>Differentiate 2·x5+2·x4-x3+3·x2-2·x with respect to x
<br>
<input type="text" id="data1" name="data1" cols="15">
<input type="button" value="Editor" onclick="edit('data1')">
</p>

<p>Integrate cos( 5·x ) with respect to x
<br>
<input type="text" id="data3" name="data3" cols="15">
<input type="button" value="Editor" onclick="edit('data3')">
</p>

<input type="submit" name="submit" value="Submit" />
</FORM>

</body>
</html>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>