[Mathlib-commitlog] SF.net SVN: mathlib:[820] JMathLib/trunk/src/jmathlib/toolbox/jmathlib
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-02-01 17:36:28
|
Revision: 820
http://mathlib.svn.sourceforge.net/mathlib/?rev=820&view=rev
Author: st_mueller
Date: 2009-02-01 17:36:26 +0000 (Sun, 01 Feb 2009)
Log Message:
-----------
documentation bugfixes
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/cla.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/clf.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/gca.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/gcf.java
Added Paths:
-----------
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/internal/eps.int
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/cla.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/cla.java 2009-02-01 17:35:36 UTC (rev 819)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/cla.java 2009-02-01 17:36:26 UTC (rev 820)
@@ -37,13 +37,13 @@
@GROUP
graphics
@SYNTAX
-clf
+cla
@DOC
clear current figure
@EXAMPLES
.
@NOTES
@SEE
-gca, gco, gcbo, gcbf, cla
+gca, clf, gcf, get, set
*/
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/clf.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/clf.java 2009-02-01 17:35:36 UTC (rev 819)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/clf.java 2009-02-01 17:36:26 UTC (rev 820)
@@ -43,6 +43,6 @@
.
@NOTES
@SEE
-gca, gco, gcbo, gcbf, cla
+gca, cla, gcf, get, set
*/
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/gca.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/gca.java 2009-02-01 17:35:36 UTC (rev 819)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/gca.java 2009-02-01 17:36:26 UTC (rev 820)
@@ -33,6 +33,6 @@
.
@NOTES
@SEE
-gcf, gco, gcbo, gcbf
+gcf, get, set
*/
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/gcf.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/gcf.java 2009-02-01 17:35:36 UTC (rev 819)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/graphics/gcf.java 2009-02-01 17:36:26 UTC (rev 820)
@@ -32,6 +32,6 @@
.
@NOTES
@SEE
-gca, gco, gcbo, gcbf
+gca, get, set
*/
Added: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/internal/eps.int
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/internal/eps.int (rev 0)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/internal/eps.int 2009-02-01 17:36:26 UTC (rev 820)
@@ -0,0 +1,25 @@
+/*
+@GROUP
+general
+@SYNTAX
+eps
+@DOC
+smallest number epsilon
+@EXAMPLES
+<programlisting>
+eps
+</programlisting>
+@NOTES
+.
+@SEE
+e, pi, i, j
+*/
+
+/*
+%!@testcase
+%! ml.executeExpression("clear('all');");
+%! ml.executeExpression("a=eps;");
+%! assertEquals( 0, ml.getScalarValueRe("a"), 0.0001);
+%! assertTrue(0 == ml.getScalarValueIm("a"));
+%!
+*/
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|