Thread: [Mathlib-commitlog] SF.net SVN: mathlib:[476] JMathLib/trunk/src/jmathlib/toolbox/jmathlib
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2008-11-23 11:19:15
|
Revision: 476
http://mathlib.svn.sourceforge.net/mathlib/?rev=476&view=rev
Author: st_mueller
Date: 2008-11-23 11:19:12 +0000 (Sun, 23 Nov 2008)
Log Message:
-----------
added information for each toolbox
Added Paths:
-----------
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/changelog.txt
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/license.txt
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/readme.txt
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/version_info.txt
Added: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/version_info.txt
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/version_info.txt (rev 0)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/version_info.txt 2008-11-23 11:19:12 UTC (rev 476)
@@ -0,0 +1,12 @@
+# JMathLib
+# Toolbox: toolbox_skeleton
+#
+# (c) 2008 Stefan Mueller (st...@he...)
+#
+jmathlib.toolboxes.toolbox_skeleton.name="skeleton"
+jmathlib.toolboxes.toolbox_skeleton.version=0.0.1
+jmathlib.toolboxes.toolbox_skeleton.release=major 0.0.1
+jmathlib.toolboxes.toolbox_skeleton.description=splines
+jmathlib.toolboxes.toolbox_skeleton.date=2008/01/01
+jmathlib.toolboxes.toolbox_skeleton.copyright=(c) 2008 Stefan Mueller (st...@he...)
+jmathlib.toolboxes.toolbox_skeleton.message=This is a skeleton for toolbox information
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <st_...@us...> - 2009-02-01 17:35:38
|
Revision: 819
http://mathlib.svn.sourceforge.net/mathlib/?rev=819&view=rev
Author: st_mueller
Date: 2009-02-01 17:35:36 +0000 (Sun, 01 Feb 2009)
Log Message:
-----------
documentation bugfixes
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/col.m
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/columns.m
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/eye.java
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/row.m
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/rows.m
JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/createfunctionslist.java
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/col.m
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/col.m 2009-02-01 13:54:21 UTC (rev 818)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/col.m 2009-02-01 17:35:36 UTC (rev 819)
@@ -16,6 +16,8 @@
col([1,2;3,4], 1) = [1;3]
col([1,2;3,4], 2) = [2;4]
</programlisting>
+@NOTES
+.
@SEE
columns, rows, row
*/
\ No newline at end of file
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/columns.m
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/columns.m 2009-02-01 13:54:21 UTC (rev 818)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/columns.m 2009-02-01 17:35:36 UTC (rev 819)
@@ -12,7 +12,11 @@
@SYNTAX
answer = columns (value)
@DOC
+.
@EXAMPLES
+.
@NOTES
+.
@SEE
+col, row, rows
*/
\ No newline at end of file
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/eye.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/eye.java 2009-02-01 13:54:21 UTC (rev 818)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/eye.java 2009-02-01 17:35:36 UTC (rev 819)
@@ -71,6 +71,6 @@
eye(3) = [1,0,0;0,1,0;0,0,1]
</programlisting>
@SEE
-identity
+ones, zeros
*/
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/row.m
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/row.m 2009-02-01 13:54:21 UTC (rev 818)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/row.m 2009-02-01 17:35:36 UTC (rev 819)
@@ -18,6 +18,6 @@
row([1,2;3,4],2) = [3,4]
</programlisting>
@SEE
-col, row, columns
+col, rows, columns
*/
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/rows.m
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/rows.m 2009-02-01 13:54:21 UTC (rev 818)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/matrix/rows.m 2009-02-01 17:35:36 UTC (rev 819)
@@ -17,5 +17,5 @@
</programlisting>
@NOTES
@SEE
-
+row, col, columns
*/
\ No newline at end of file
Modified: JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/createfunctionslist.java
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/createfunctionslist.java 2009-02-01 13:54:21 UTC (rev 818)
+++ JMathLib/trunk/src/jmathlib/toolbox/jmathlib/system/createfunctionslist.java 2009-02-01 17:35:36 UTC (rev 819)
@@ -148,6 +148,6 @@
@EXAMPLES
createfunctionslist()
@SEE
-path, setpath, rmpath
+path, rmpath, update, checkforupdates
*/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
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.
|