[Jspro-cvs] jsPro/docs math.html,1.8,1.9
Brought to you by:
wigleys
|
From: <wi...@us...> - 2003-09-24 13:10:29
|
Update of /cvsroot/jspro/jsPro/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv13382/docs
Modified Files:
math.html
Log Message:
new methods: Math.approx(), Math.arg(), Math.exp10
Index: math.html
===================================================================
RCS file: /cvsroot/jspro/jsPro/docs/math.html,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** math.html 14 Sep 2003 08:16:38 -0000 1.8
--- math.html 24 Sep 2003 13:10:23 -0000 1.9
***************
*** 71,74 ****
--- 71,93 ----
</tr>
<tr>
+ <td>Math.approx()</td>
+ <td>
+ <input id="approx1" name="input" type="text" size="5" />
+ <input id="approx2" name="input" type="text" size="5" />
+ <input id="approx3" name="input" type="text" size="5" />
+ </td>
+ <td><input id="approx" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'Math')" /></td>
+ <td><input id="approxResult" name="output" type="text" size="30" readonly="readonly" /></td>
+ </tr>
+ <tr>
+ <td>Math.arg()</td>
+ <td>
+ <input id="arg1" name="input" type="text" size="5" />
+ <input id="arg2" name="input" type="text" size="5" />
+ </td>
+ <td><input id="arg" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'Math')" /></td>
+ <td><input id="argResult" name="output" type="text" size="30" readonly="readonly" /></td>
+ </tr>
+ <tr>
<td>Math.asec()</td>
<td><input id="asec1" name="input" type="text" size="5" /></td>
***************
*** 189,192 ****
--- 208,217 ----
</tr>
<tr>
+ <td>Math.exp10()</td>
+ <td><input id="exp101" name="input" type="text" size="5" /></td>
+ <td><input id="exp10" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'Math')" /></td>
+ <td><input id="exp10Result" name="output" type="text" size="30" readonly="readonly" /></td>
+ </tr>
+ <tr>
<td>Math.expm1()</td>
<td><input id="expm11" name="input" type="text" size="5" /></td>
***************
*** 301,304 ****
--- 326,338 ----
<td><input id="log1p" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'Math')" /></td>
<td><input id="log1pResult" name="output" type="text" size="30" readonly="readonly" /></td>
+ </tr>
+ <tr>
+ <td>Math.logn()</td>
+ <td>
+ <input id="logn1" name="input" type="text" size="5" />
+ <input id="logn2" name="input" type="text" size="5" />
+ </td>
+ <td><input id="logn" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'Math')" /></td>
+ <td><input id="lognResult" name="output" type="text" size="30" readonly="readonly" /></td>
</tr>
<tr>
|