mathlib-commitlog Mailing List for JMathLib - Octave, Matlab clone in java (Page 48)
Status: Beta
Brought to you by:
st_mueller
You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(4) |
Aug
(150) |
Sep
|
Oct
|
Nov
|
Dec
(2) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(233) |
Feb
(86) |
Mar
(32) |
Apr
(26) |
May
(73) |
Jun
(45) |
Jul
(23) |
Aug
(23) |
Sep
(5) |
Oct
(80) |
Nov
(11) |
Dec
(11) |
| 2008 |
Jan
|
Feb
|
Mar
(13) |
Apr
(3) |
May
(7) |
Jun
(30) |
Jul
(12) |
Aug
(12) |
Sep
|
Oct
|
Nov
(78) |
Dec
(78) |
| 2009 |
Jan
(214) |
Feb
(79) |
Mar
(20) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Stefan M. <st_...@us...> - 2007-01-05 08:55:45
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Functions/specfun/_private In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv7331/Source/MathLib/Functions/specfun/_private Log Message: Directory /cvsroot/mathlib/mathlib/Source/MathLib/Functions/specfun/_private added to the repository |
|
From: Stefan M. <st_...@us...> - 2007-01-04 18:09:10
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Functions/specfun In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv15042/Source/MathLib/Functions/specfun Added Files: betaln.m Log Message: --- NEW FILE: betaln.m --- ## Copyright (C) 1998 by Nicol N. Schraudolph ## ## This file is part of Octave. ## ## Octave is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2, or (at your option) ## any later version. ## ## Octave is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Octave; see the file COPYING. If not, write to the Free ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA ## 02110-1301, USA. ## -*- texinfo -*- ## @deftypefn {Mapping Function} {} betaln (@var{a}, @var{b}) ## Return the log of the Beta function, ## @iftex ## @tex ## $$ ## B (a, b) = \log {\Gamma (a) \Gamma (b) \over \Gamma (a + b)}. ## $$ ## @end tex ## @end iftex ## @ifinfo ## ## @example ## betaln (a, b) = gammaln (a) + gammaln (b) - gammaln (a + b) ## @end example ## @end ifinfo ## @seealso{beta, betai, gammaln} ## @end deftypefn ## Author: Nicol N. Schraudolph <ni...@id...> ## Created: 06 Aug 1998 ## Keywords: log beta special function function retval = betaln (a, b) if (nargin != 2) print_usage (); endif retval = gammaln (a) + gammaln (b) - gammaln (a + b); endfunction %!assert (betaln(3,4),log(beta(3,4)),eps) %!error (betaln(1.)) %!error (betaln(1.,1.,1.)) /* @GROUP specfun @SYNTAX betaln(a,b) @DOC . @EXAMPLES <programlisting> betaln(2, 3) </programlisting> @NOTES @SEE gammaln, gammainc, beta */ |
|
From: Stefan M. <st_...@us...> - 2007-01-04 18:08:48
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Functions/specfun In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv14798/Source/MathLib/Functions/specfun Added Files: beta.m Log Message: --- NEW FILE: beta.m --- ## Copyright (C) 1996, 1997 John W. Eaton ## ## This file is part of Octave. ## ## Octave is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2, or (at your option) ## any later version. ## ## Octave is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Octave; see the file COPYING. If not, write to the Free ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA ## 02110-1301, USA. ## -*- texinfo -*- ## @deftypefn {Mapping Function} {} beta (@var{a}, @var{b}) ## Return the Beta function, ## @iftex ## @tex ## $$ ## B (a, b) = {\Gamma (a) \Gamma (b) \over \Gamma (a + b)}. ## $$ ## @end tex ## @end iftex ## @ifinfo ## ## @example ## beta (a, b) = gamma (a) * gamma (b) / gamma (a + b). ## @end example ## @end ifinfo ## @end deftypefn ## Author: KH <Kur...@wu...> ## Created: 13 June 1993 ## Adapted-By: jwe function retval = beta (a, b) if (nargin != 2) print_usage (); endif retval = exp (gammaln (a) + gammaln (b) - gammaln (a+b)); endfunction /* @GROUP specfun @SYNTAX beta(a,b) @DOC . @EXAMPLES <programlisting> beta(2, 3) </programlisting> @NOTES @SEE gammaln, gammainc, betaln */ |
|
From: Stefan M. <st_...@us...> - 2007-01-04 18:02:05
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Functions/specfun In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv11771/Source/MathLib/Functions/specfun Added Files: bessel.m Log Message: --- NEW FILE: bessel.m --- ## Copyright (C) 1996, 1997 John W. Eaton ## ## This file is part of Octave. ## ## Octave is free software; you can redistribute it and/or modify it ## under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2, or (at your option) ## any later version. ## ## Octave is distributed in the hope that it will be useful, but ## WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ## General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with Octave; see the file COPYING. If not, write to the Free ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA ## 02110-1301, USA. ## -*- texinfo -*- ## @deftypefn {Mapping Function} {} besseli (@var{alpha}, @var{x}) ## @deftypefnx {Mapping Function} {} besselj (@var{alpha}, @var{x}) ## @deftypefnx {Mapping Function} {} besselk (@var{alpha}, @var{x}) ## @deftypefnx {Mapping Function} {} bessely (@var{alpha}, @var{x}) ## Compute Bessel functions of the following types: ## ## @table @code ## @item besselj ## Bessel functions of the first kind. ## ## @item bessely ## Bessel functions of the second kind. ## ## @item besseli ## Modified Bessel functions of the first kind. ## ## @item besselk ## Modified Bessel functions of the second kind. ## @end table ## ## The second argument, @var{x}, must be a real matrix, vector, or scalar. ## ## The first argument, @var{alpha}, must be greater than or equal to zero. ## If @var{alpha} is a range, it must have an increment equal to one. ## ## If @var{alpha} is a scalar, the result is the same size as @var{x}. ## ## If @var{alpha} is a range, @var{x} must be a vector or scalar, and the ## result is a matrix with @code{length(@var{x})} rows and ## @code{length(@var{alpha})} columns. ## @end deftypefn function bessel () error ("bessel: you must use besselj, bessely, besseli, or besselk"); endfunction |
|
From: Stefan M. <st_...@us...> - 2007-01-02 16:21:33
|
Update of /cvsroot/mathlib/mathlib In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv3450 Modified Files: ChangeLog.txt Log Message: Index: ChangeLog.txt =================================================================== RCS file: /cvsroot/mathlib/mathlib/ChangeLog.txt,v retrieving revision 1.136 retrieving revision 1.137 diff -C2 -d -r1.136 -r1.137 *** ChangeLog.txt 31 Dec 2006 10:42:44 -0000 1.136 --- ChangeLog.txt 2 Jan 2007 16:21:29 -0000 1.137 *************** *** 24,30 **** ---- HISTORY ------------------------------------------------------------------ ! 2006/12/xx stefan * 2006/12/30 stefan * Functions/Matrix/sort.java added support for two return arguments [x,y]=sort(A) --- 24,36 ---- ---- HISTORY ------------------------------------------------------------------ ! 2007/01/xx stefan * + 2007/01/02 + stefan * Function.java, FunctionManager.java, MFileLoader.java and added support + for rehashing of m-files + stefan + Functions/General/rehash.java + stefan * Interpreter.java added rehashing of m-files to the end of each execute + 2006/12/30 stefan * Functions/Matrix/sort.java added support for two return arguments [x,y]=sort(A) |
|
From: Stefan M. <st_...@us...> - 2007-01-02 16:21:15
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Interpreter In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv3400/Source/MathLib/Interpreter Modified Files: Interpreter.java Log Message: Index: Interpreter.java =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Interpreter/Interpreter.java,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 *** Interpreter.java 26 Dec 2006 12:27:34 -0000 1.63 --- Interpreter.java 2 Jan 2007 16:21:07 -0000 1.64 *************** *** 211,214 **** --- 211,217 ---- } + // if required rehash m-files + getFunctionManager().checkAndRehashTimeStamps(); + return answer; } |
|
From: Stefan M. <st_...@us...> - 2007-01-02 16:14:27
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Functions/System In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv665/Source/MathLib/Functions/System Added Files: rehash.java Log Message: rehash user functions if they changed on disc --- NEW FILE: rehash.java --- package MathLib.Functions.System; import MathLib.Tokens.*; import MathLib.Functions.ExternalFunction; public class rehash extends ExternalFunction { public OperandToken evaluate(Token[] operands) { boolean result = getFunctionManager().checkAndRehashTimeStamps(); return null; } // end eval } /* @GROUP system @SYNTAX rehash @DOC rehases all m-files in the cache for user functions @EXAMPLES <programlisting> rehash </programlisting> @SEE path, rmpath, addpath */ |
|
From: Stefan M. <st_...@us...> - 2007-01-02 16:10:00
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Functions In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv30666/Source/MathLib/Functions Modified Files: MFileLoader.java Function.java FunctionManager.java Log Message: added support for rehashing of m-files Index: MFileLoader.java =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/MFileLoader.java,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** MFileLoader.java 8 Jan 2005 16:29:17 -0000 1.26 --- MFileLoader.java 2 Jan 2007 16:09:27 -0000 1.27 *************** *** 70,75 **** public UserFunction loadMFile(String directory, String mFileName) { ! String code = ""; ! UserFunction function = null; ErrorLogger.debugLine("MFileLoader: loading >"+mFileName+".m<"); --- 70,77 ---- public UserFunction loadMFile(String directory, String mFileName) { ! String code = ""; ! UserFunction function = null; ! String fullFileName = directory + File.separator + mFileName+".m"; ! File file = null; ErrorLogger.debugLine("MFileLoader: loading >"+mFileName+".m<"); *************** *** 78,82 **** try { ! BufferedReader inReader = new BufferedReader( new FileReader(directory+"/"+mFileName+".m")); String line; while ((line = inReader.readLine()) != null) --- 80,85 ---- try { ! file = new File (fullFileName); ! BufferedReader inReader = new BufferedReader( new FileReader(file)); String line; while ((line = inReader.readLine()) != null) *************** *** 101,105 **** // to the function's name inside the m-file function.setName(mFileName); ! // check if p-file caching is enabled if (pFileCachingEnabledB) --- 104,114 ---- // to the function's name inside the m-file function.setName(mFileName); ! ! // set date of file as it has been found on the disc ! function.setLastModified(file.lastModified()); ! ! // set filename and full path to the function ! function.setPathAndFileName(fullFileName); ! // check if p-file caching is enabled if (pFileCachingEnabledB) Index: Function.java =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/Function.java,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** Function.java 30 Dec 2006 21:42:08 -0000 1.18 --- Function.java 2 Jan 2007 16:09:27 -0000 1.19 *************** *** 14,20 **** protected String name; ! /**Number of left-hand arguments (e.g. [a,b,c]=some_functions() ) */ private int nargout = 0; ! /**Default constructor - Creates a function with a null name*/ public Function() --- 14,26 ---- protected String name; ! /** path and filename where this function is located on the disc*/ ! protected String pathAndFileName; ! ! /** data and time of last modification of this file on disc*/ ! protected long lastModified; ! ! /**Number of left-hand arguments (e.g. [a,b,c]=some_functions() ) */ private int nargout = 0; ! /**Default constructor - Creates a function with a null name*/ public Function() *************** *** 30,38 **** } ! /**@return the name of the function*/ ! public String getName() ! { ! return name; ! } /**Sets the name of this function --- 36,81 ---- } ! /**@return the name of the function*/ ! public String getName() ! { ! return name; ! } ! ! ! /** ! * sets the path and filename that belongs to this functions ! * @param _pathAndFileName ! */ ! public void setPathAndFileName(String _pathAndFileName) ! { ! pathAndFileName = _pathAndFileName; ! } ! ! /** ! * returns the path and filename that belongs to this functions ! * @return path and filename ! */ ! public String getPathAndFileName() ! { ! return pathAndFileName; ! } ! ! /** ! * Set the date of last modification of this function ! * @param _lastModified ! */ ! public void setLastModified(long _lastModified) ! { ! lastModified = _lastModified; ! } ! ! /** ! * Returns the date of last modification of this function ! * @return date of last modification ! */ ! public long getLastModified() ! { ! return lastModified; ! } /**Sets the name of this function Index: FunctionManager.java =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/FunctionManager.java,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** FunctionManager.java 30 Dec 2006 21:31:36 -0000 1.48 --- FunctionManager.java 2 Jan 2007 16:09:27 -0000 1.49 *************** *** 17,29 **** /**A list of the trigonometric functions*/ Vector trigonometricFunctions; /**A list of the standard functions*/ Vector standardFunctions; ! /**A list of complex number functions*/ ! //Vector complexFunctions; ! /**A list of matrix number functions*/ ! //Vector matrixFunctions; /**A list of all the functions defined by the user*/ HashMap userFunctions; ! /* indicates if FunctionManager is running in an application or an applet */ private boolean runningStandalone; --- 17,27 ---- /**A list of the trigonometric functions*/ Vector trigonometricFunctions; + /**A list of the standard functions*/ Vector standardFunctions; ! /**A list of all the functions defined by the user*/ HashMap userFunctions; ! /* indicates if FunctionManager is running in an application or an applet */ private boolean runningStandalone; *************** *** 90,109 **** standardFunctions.addElement(new InternalFunction("PATH")); - //complexFunctions = new Vector(4); - //complexFunctions.addElement(new InternalFunction("CONJ")); - //complexFunctions.addElement(new InternalFunction("REAL")); - //complexFunctions.addElement(new InternalFunction("IMAG")); - //complexFunctions.addElement(new InternalFunction("ARG")); - - //matrixFunctions = new Vector(8); - //matrixFunctions.addElement(new InternalFunction("TRANSPOSE")); - //matrixFunctions.addElement(new InternalFunction("DIAGONAL")); - //matrixFunctions.addElement(new InternalFunction("ROWCOUNT")); - //matrixFunctions.addElement(new InternalFunction("COLCOUNT")); - //matrixFunctions.addElement(new InternalFunction("ROW")); - //matrixFunctions.addElement(new InternalFunction("COL")); - //matrixFunctions.addElement(new InternalFunction("IDENTITY")); - //matrixFunctions.addElement(new InternalFunction("ZEROMATRIX")); - userFunctions = new HashMap(); --- 88,91 ---- *************** *** 119,123 **** { classLoader = null; ! mLoader = new MFileLoader(); //null; webLoader = new WebFunctionLoader(sysFlags); } --- 101,105 ---- { classLoader = null; ! mLoader = new MFileLoader(); webLoader = new WebFunctionLoader(sysFlags); } *************** *** 132,135 **** --- 114,182 ---- } + /** + * + * @return + */ + public boolean checkAndRehashTimeStamps() + { + + // get iterator on hasmap for user functions + Iterator it = userFunctions.entrySet().iterator(); + + // stack for functions to be removed + Stack stack = new Stack(); + + // check all user functions in the hash map + while (it.hasNext()) + { + // get next user function + Map.Entry entry = (Map.Entry)it.next(); + + long lastModifiedCheck = 0; + + String pathAndFileName = ((UserFunction)entry.getValue()).getPathAndFileName(); + + try + { + File file = new File (pathAndFileName); + lastModifiedCheck = file.lastModified(); + } + catch (Exception e) + { + Errors.throwMathLibException("FunctionManger: lastModified exception"); + } + + long lastModified = ((UserFunction)entry.getValue()).lastModified; + + boolean dateChanged = (lastModified!=lastModifiedCheck); + + String key = (String)entry.getKey(); + + ErrorLogger.debugLine("UserF: " + + key +" -> ( "+ pathAndFileName +", "+ + lastModified +" , "+ lastModifiedCheck + + " -> " + dateChanged + ")" ); + + // check if date of file in cache and date of file on disc are different + if (dateChanged) + { + // user function has changed on disc, prepare to delete from cache + stack.push(key); + //ErrorLogger.debugLine("UserF: marked " + key); + } + + } // end while + + // remove all marked user functions from has map + String func = null; + while (!stack.empty()) + { + func = (String)stack.pop(); + userFunctions.remove( func ); + ErrorLogger.debugLine("UserF: removed " + func); + } + + return true; + } /**find a function It checks user functions then external functions then internal functions *************** *** 351,372 **** } - //check complex functions - //index = complexFunctions.indexOf(token); - //if(index > -1) - //{ - // MathLib.Interpreter.ErrorLogger.debugLine("Found complex function "+index); - // func = new ComplexFunction(index); - // return func; - //} - - //check matrix functions - //index = matrixFunctions.indexOf(token); - //if(index > -1) - //{ - // MathLib.Interpreter.ErrorLogger.debugLine("Found matrix function "+index); - // func = new MatrixFunction(index); - // return func; - //} - return func; } --- 398,401 ---- |
|
From: Stefan M. <st_...@us...> - 2007-01-02 15:55:38
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Tools/TestSuite/Functions/Internal In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24745/Source/MathLib/Tools/TestSuite/Functions/Internal Modified Files: testLog.java Log Message: corrected bug in testlog04 Index: testLog.java =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Tools/TestSuite/Functions/Internal/testLog.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** testLog.java 31 Aug 2006 09:33:14 -0000 1.2 --- testLog.java 2 Jan 2007 15:55:34 -0000 1.3 *************** *** 51,58 **** catch (Exception e) { ! assertTrue(true); return; } ! assertTrue(false); } --- 51,58 ---- catch (Exception e) { ! assertTrue(false); return; } ! assertTrue(true); } |
|
From: Stefan M. <st_...@us...> - 2007-01-02 14:29:51
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Functions/test In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv16954/Source/MathLib/Functions/test Removed Files: double.m Log Message: --- double.m DELETED --- |
|
From: Stefan M. <st_...@us...> - 2007-01-02 14:29:38
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Functions/test In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv16873/Source/MathLib/Functions/test Added Files: test010.m test011.m Log Message: --- NEW FILE: test011.m --- b=[5,6,7] a=[2,3,5] y(1)=b(2) --- NEW FILE: test010.m --- b=[5,6,7] a=[2,3,5] yindex=0; for index = 1:length (b) index yindex if (all (a != b (index))) y(yindex++) = b(index) endif endfor |
|
From: Stefan M. <st_...@us...> - 2007-01-02 12:16:16
|
Update of /cvsroot/mathlib/mathlib/Documentation/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv9431/Documentation/src Modified Files: doc.xml Log Message: added 2007 Index: doc.xml =================================================================== RCS file: /cvsroot/mathlib/mathlib/Documentation/src/doc.xml,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** doc.xml 26 Nov 2006 13:06:35 -0000 1.14 --- doc.xml 2 Jan 2007 12:16:05 -0000 1.15 *************** *** 28,31 **** --- 28,32 ---- <year>2005</year> <year>2006</year> + <year>2007</year> <holder>Stefan Müller</holder> </copyright> *************** *** 68,75 **** </abstract> ! <pubdate>November 26, 2006</pubdate> <releaseinfo><para><emphasis> ! This is the first release which is connected to JMathLib in Version 0.7.0 </emphasis></para></releaseinfo> --- 69,76 ---- </abstract> ! <pubdate>January xx, 2007</pubdate> <releaseinfo><para><emphasis> ! This release is connected to JMathLib in Version 0.7.0 and following versions </emphasis></para></releaseinfo> |
|
From: Stefan M. <st_...@us...> - 2007-01-02 11:04:55
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Functions/Internal In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv9161/Source/MathLib/Functions/Internal Added Files: j.int i.int Log Message: --- NEW FILE: i.int --- @GROUP general @SYNTAX i @DOC imaginary unit @EXAMPLES <programlisting> 1+i 3i 5j </programlisting> @SEE j --- NEW FILE: j.int --- @GROUP general @SYNTAX j @DOC imaginary unit @EXAMPLES <programlisting> 1+j 3i 5j </programlisting> @SEE i |
|
From: Stefan M. <st_...@us...> - 2007-01-02 11:00:45
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Functions/specialmatrix In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv7485/Source/MathLib/Functions/specialmatrix Modified Files: pascal.m hankel.m Log Message: added basic documentation Index: pascal.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/specialmatrix/pascal.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pascal.m 26 Dec 2006 16:20:29 -0000 1.1 --- pascal.m 2 Jan 2007 11:00:41 -0000 1.2 *************** *** 72,73 **** --- 72,86 ---- endfunction + + /* + @GROUP + specialmatrix + @SYNTAX + pascal() + @DOC + + @EXAMPLES + @NOTES + @SEE + rosser + */ \ No newline at end of file Index: hankel.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/specialmatrix/hankel.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** hankel.m 16 Dec 2006 15:03:34 -0000 1.1 --- hankel.m 2 Jan 2007 11:00:41 -0000 1.2 *************** *** 107,108 **** --- 107,121 ---- %!assert(hankel(1:3,3:4),[1,2;2,3;3,4]); %!assert(hankel(1:3,4:6),[1,2,3;2,3,5;3,5,6]); + + /* + @GROUP + specialmatrix + @SYNTAX + hankel() + @DOC + + @EXAMPLES + @NOTES + @SEE + rosser + */ |
|
From: Stefan M. <st_...@us...> - 2007-01-02 10:58:58
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Functions/signal In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv6598/Source/MathLib/Functions/signal Modified Files: sinewave.m sinc.m durbinlevinson.m triangle_lw.m triangle_sw.m hanning.m Log Message: added basic documentation Index: sinewave.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/signal/sinewave.m,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** sinewave.m 25 Nov 2006 13:11:15 -0000 1.3 --- sinewave.m 2 Jan 2007 10:58:55 -0000 1.4 *************** *** 50,54 **** signal @SYNTAX ! answer = template (value) @DOC . --- 50,54 ---- signal @SYNTAX ! sinwave() @DOC . *************** *** 58,61 **** . @SEE ! rectangle_lw, rectangle_sw */ --- 58,61 ---- . @SEE ! */ Index: sinc.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/signal/sinc.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** sinc.m 21 Dec 2006 18:12:45 -0000 1.1 --- sinc.m 2 Jan 2007 10:58:55 -0000 1.2 *************** *** 45,46 **** --- 45,61 ---- endfunction + + /* + @GROUP + signal + @SYNTAX + sinc() + @DOC + . + @EXAMPLES + . + @NOTES + . + @SEE + + */ Index: hanning.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/signal/hanning.m,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** hanning.m 25 Nov 2006 13:11:15 -0000 1.3 --- hanning.m 2 Jan 2007 10:58:55 -0000 1.4 *************** *** 52,56 **** signal @SYNTAX ! answer = template (value) @DOC . --- 52,56 ---- signal @SYNTAX ! hanning() @DOC . Index: triangle_lw.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/signal/triangle_lw.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** triangle_lw.m 21 Dec 2006 18:15:39 -0000 1.1 --- triangle_lw.m 2 Jan 2007 10:58:55 -0000 1.2 *************** *** 34,35 **** --- 34,49 ---- endfunction + /* + @GROUP + signal + @SYNTAX + triangle_lw() + @DOC + . + @EXAMPLES + . + @NOTES + . + @SEE + */ + Index: durbinlevinson.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/signal/durbinlevinson.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** durbinlevinson.m 26 Dec 2006 16:13:57 -0000 1.1 --- durbinlevinson.m 2 Jan 2007 10:58:55 -0000 1.2 *************** *** 93,94 **** --- 93,109 ---- endfunction + + /* + @GROUP + signal + @SYNTAX + durbinlevinson() + @DOC + . + @EXAMPLES + . + @NOTES + . + @SEE + bartlett, hamming, hanning + */ Index: triangle_sw.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/signal/triangle_sw.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** triangle_sw.m 21 Dec 2006 18:15:39 -0000 1.1 --- triangle_sw.m 2 Jan 2007 10:58:55 -0000 1.2 *************** *** 40,43 **** --- 40,59 ---- + /* + @GROUP + signal + @SYNTAX + triangle_sw() + @DOC + . + @EXAMPLES + . + @NOTES + . + @SEE + */ + + + |
|
From: Stefan M. <st_...@us...> - 2007-01-02 10:55:16
|
Update of /cvsroot/mathlib/mathlib/Source/MathLib/Functions/LinearAlgebra In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv5129/Source/MathLib/Functions/LinearAlgebra Modified Files: dot.m vech.m duplication_matrix.m norm.m dmult.m null.m commutation_matrix.m rank.m orth.m Log Message: added basic documentation Index: vech.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/LinearAlgebra/vech.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** vech.m 21 Dec 2006 18:06:57 -0000 1.1 --- vech.m 2 Jan 2007 10:55:09 -0000 1.2 *************** *** 54,55 **** --- 54,68 ---- endfunction + + /* + @GROUP + LinearAlgebra + @SYNTAX + vech() + @DOC + . + @EXAMPLES + <programlisting> + </programlisting> + @SEE + */ Index: norm.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/LinearAlgebra/norm.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** norm.m 21 Dec 2006 18:03:25 -0000 1.1 --- norm.m 2 Jan 2007 10:55:09 -0000 1.2 *************** *** 128,129 **** --- 128,142 ---- endfunction + + /* + @GROUP + LinearAlgebra + @SYNTAX + norm() + @DOC + . + @EXAMPLES + <programlisting> + </programlisting> + @SEE + */ Index: commutation_matrix.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/LinearAlgebra/commutation_matrix.m,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** commutation_matrix.m 4 Dec 2006 20:24:17 -0000 1.2 --- commutation_matrix.m 2 Jan 2007 10:55:09 -0000 1.3 *************** *** 109,110 **** --- 109,123 ---- endfunction + + /* + @GROUP + LinearAlgebra + @SYNTAX + commutation_matrix + @DOC + . + @EXAMPLES + <programlisting> + </programlisting> + @SEE + */ \ No newline at end of file Index: orth.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/LinearAlgebra/orth.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** orth.m 21 Dec 2006 18:00:28 -0000 1.1 --- orth.m 2 Jan 2007 10:55:09 -0000 1.2 *************** *** 70,71 **** --- 70,84 ---- endfunction + + /* + @GROUP + LinearAlgebra + @SYNTAX + orth + @DOC + . + @EXAMPLES + <programlisting> + </programlisting> + @SEE + */ Index: null.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/LinearAlgebra/null.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** null.m 16 Dec 2006 14:20:20 -0000 1.1 --- null.m 2 Jan 2007 10:55:09 -0000 1.2 *************** *** 68,69 **** --- 68,82 ---- endfunction + + /* + @GROUP + LinearAlgebra + @SYNTAX + null() + @DOC + . + @EXAMPLES + <programlisting> + </programlisting> + @SEE + */ Index: dot.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/LinearAlgebra/dot.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dot.m 21 Dec 2006 17:52:45 -0000 1.1 --- dot.m 2 Jan 2007 10:55:09 -0000 1.2 *************** *** 53,54 **** --- 53,67 ---- endfunction + + /* + @GROUP + LinearAlgebra + @SYNTAX + dot() + @DOC + . + @EXAMPLES + <programlisting> + </programlisting> + @SEE + */ Index: dmult.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/LinearAlgebra/dmult.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dmult.m 21 Dec 2006 17:57:29 -0000 1.1 --- dmult.m 2 Jan 2007 10:55:09 -0000 1.2 *************** *** 40,41 **** --- 40,54 ---- M = repmat (a(:), sb) .* B; endfunction + + /* + @GROUP + LinearAlgebra + @SYNTAX + dmult + @DOC + . + @EXAMPLES + <programlisting> + </programlisting> + @SEE + */ Index: duplication_matrix.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/LinearAlgebra/duplication_matrix.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** duplication_matrix.m 4 Dec 2006 20:23:37 -0000 1.1 --- duplication_matrix.m 2 Jan 2007 10:55:09 -0000 1.2 *************** *** 98,99 **** --- 98,112 ---- endfunction + + /* + @GROUP + LinearAlgebra + @SYNTAX + duplication_matrix + @DOC + . + @EXAMPLES + <programlisting> + </programlisting> + @SEE + */ Index: rank.m =================================================================== RCS file: /cvsroot/mathlib/mathlib/Source/MathLib/Functions/LinearAlgebra/rank.m,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** rank.m 4 Dec 2006 20:10:26 -0000 1.1 --- rank.m 2 Jan 2007 10:55:09 -0000 1.2 *************** *** 55,56 **** --- 55,69 ---- endfunction + + /* + @GROUP + LinearAlgebra + @SYNTAX + rank() + @DOC + . + @EXAMPLES + <programlisting> + </programlisting> + @SEE + */ \ No newline at end of file |
|
From: Stefan M. <st_...@us...> - 2007-01-02 10:42:53
|
Update of /cvsroot/mathlib/mathlib/Documentation/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv32323/Documentation/src Modified Files: usage.xml Log Message: more programlistings Index: usage.xml =================================================================== RCS file: /cvsroot/mathlib/mathlib/Documentation/src/usage.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** usage.xml 22 Oct 2006 12:54:40 -0000 1.6 --- usage.xml 2 Jan 2007 10:42:47 -0000 1.7 *************** *** 2,22 **** <part id="usage"> <title >Usage</title > ! <chapter id="usage_basicoperations"> ! <title >Basic Operations</title> ! <para> ! <application class="software">MathLib</application > understands the basic operators +,-,*,/,^ and !. ! </para > ! <informalexample> ! <simpara>> 2+3</simpara> ! <simpara >5.0</simpara > ! <simpara >> 5!</simpara > ! <simpara >120.0</simpara > ! <simpara >> 2*3</simpara > ! <simpara >6.0</simpara > ! <simpara >> 2^3</simpara > ! <simpara >8.0</simpara > ! <simpara >> 2/3</simpara > ! <simpara >0.6666666666666666</simpara > ! </informalexample > <simpara >The operators work in the following order</simpara > <simpara >^</simpara > --- 2,23 ---- <part id="usage"> <title >Usage</title > ! ! <chapter id="usage_basicoperations"> ! <title >Basic Operations</title> ! <para> ! <application class="software">JMathLib</application > understands the basic operators +,-,*,/,^ and !. ! </para > ! <programlisting> ! > 2+3 ! 5.0 ! > 5! ! 120.0 ! > 2*3 ! 6.0 ! > 2^3 ! 8.0 ! > 2/3 ! 0.6666666666666666 ! </programlisting> <simpara >The operators work in the following order</simpara > <simpara >^</simpara > *************** *** 25,48 **** <simpara >!</simpara > <simpara >This can be modified by using brackets</simpara > ! <informalexample > ! <simpara >> 2+3*4</simpara > ! <simpara >14.0</simpara > ! <simpara >> (2+3)*4</simpara > ! <simpara >20.0</simpara > ! <simpara >> 2*3^2</simpara > ! <simpara >18.0</simpara > ! <simpara >> (2*3)^2</simpara > ! <simpara >36.0</simpara > ! <simpara >> 2^3!</simpara > ! <simpara >40320.0</simpara > ! <simpara >> 2^(3!)</simpara > ! <simpara >64.0</simpara > ! <simpara >> 2+3!</simpara > ! <simpara >120.0</simpara > ! <simpara >> 2+(3!)</simpara > ! <simpara >8.0</simpara > ! </informalexample > ! </chapter> ! <chapter id="usage_usingvariables"> <title >Variables</title > <simpara >Variables are assigned values by using the assignment operator =</simpara > --- 26,57 ---- <simpara >!</simpara > <simpara >This can be modified by using brackets</simpara > ! <programlisting> ! > 2+3*4 ! 14.0 ! ! > (2+3)*4 ! 20.0 ! ! > 2*3^2 ! 18.0 ! ! > (2*3)^2 ! 36.0 ! ! > 2^3! ! 40320.0 ! ! > 2^(3!) ! 64.0 ! ! > 2+3! ! 120.0 ! ! > 2+(3!) ! 8.0 ! </programlisting> ! </chapter> ! ! <chapter id="usage_usingvariables"> <title >Variables</title > <simpara >Variables are assigned values by using the assignment operator =</simpara > *************** *** 56,82 **** </informalexample> </chapter > <chapter id="usage_complexnumbers"> <title >Complex Numbers</title > <simpara > ! Complex numbers are used with the variables img or i. This is defined as being the ! square root of -1. </simpara > ! <informalexample > ! <simpara >> 1+img</simpara > ! <simpara >(1.0 + i)</simpara > ! <simpara >> i^2</simpara > ! <simpara >-1.0</simpara > ! <simpara >> img^3</simpara > ! <simpara >-1.0i</simpara > ! <simpara >> img^4</simpara > ! <simpara >1.0</simpara > ! <simpara >> (1+img)*(1-img)</simpara > ! <simpara >2.0i</simpara > ! </informalexample > ! </chapter > ! <chapter id="usage_matrices"> ! <title >Matrices</title > <simpara> ! Matrices are entered by enclosing the values in [ ]. each item in a row is separated by a , and each row is separated by a ;. </simpara > <informalexample > --- 65,95 ---- </informalexample> </chapter > + <chapter id="usage_complexnumbers"> <title >Complex Numbers</title > <simpara > ! Complex numbers are used with the variables <code>j</code> or <code>i</code>. ! This is defined as being the square root of -1. </simpara > ! <programlisting> ! > 1+i ! (1.0 + i) ! > i^2 ! -1.0 ! > i^3 ! -1.0i ! > i^4 ! 1.0 ! > (1+i)*(1-j) ! 2.0i ! </programlisting> ! </chapter > ! ! <chapter id="usage_matrices"> ! <title >Matrices</title > <simpara> ! Matrices are entered by enclosing the values in [ ]. Each item in a row is ! separated by a <code>,</code> and each row is separated by a ! <code>;</code>. </simpara > <informalexample > *************** *** 91,96 **** </informalexample > <simpara> ! The identity matrix can be entered using the function EYE with the size of the matrix as the parameter. ! A zero filled matrix can be entered using the ZEROS function. This accepts either one parameter to produce a square matrix or two to produce a rectangular matrix. A one filled matrix can be entered using the ONES function. This accepts either one parameter to produce a square matrix or two to produce a rectangular matrix. </simpara > --- 104,111 ---- </informalexample > <simpara> ! The identity matrix can be entered using the function <code>eye</code> ! with the size of the matrix as the parameter. ! A zero filled matrix can be entered using the <code>zeros</code> ! function. This accepts either one parameter to produce a square matrix or two to produce a rectangular matrix. A one filled matrix can be entered using the ONES function. This accepts either one parameter to produce a square matrix or two to produce a rectangular matrix. </simpara > *************** *** 105,230 **** <simpara>2:2:8 = [2,4,6,8]</simpara > </informalexample > ! </chapter > ! <chapter id="usage_controlstructures"> ! <title >Control Structures</title > ! <sect1 id="if"> ! <title >If</title > ! <simpara >There are two ways of writing if statements</simpara > ! <informalexample > ! <simpara > ! if(test1) ! { ! code1; ! } ! elseif(test2) ! { ! code2; ! } ! else ! { ! code3; ! }; ! </simpara > ! <simpara > ! if test1 ! code1; ! elseif test2 ! code2; ! else ! code3; ! end; ! </simpara > ! </informalexample > </sect1 > <sect1 id="switch"> <title >Switch</title > <simpara >The two ways of writing switch statements are:</simpara > ! <informalexample > ! <simpara > ! switch(variable) ! { ! case(val1): ! { ! code1; ! } ! case(val2): ! { ! code2; ! } ! default/otherwise: ! { ! code3; ! } ! }; ! </simpara > ! <simpara > ! switch(variable) ! case val1: ! code1; ! case val2: ! code2; ! default/otherwise: ! code3: ! end; ! </simpara > ! </informalexample > </sect1 > <sect1 id="for"> <title >For</title > <simpara >The two ways of writing the for statement are:</simpara > ! <informalexample > ! <simpara > ! for(initialisiation, test, increment) ! { ! code; ! }; ! </simpara > ! <simpara > ! for variable = vector ! code; ! end; ! </simpara > ! </informalexample > </sect1 > <sect1 id="while"> <title >While</title > <simpara >The two ways of writing a while statement are:</simpara > ! <informalexample > ! <simpara > ! while(test) ! { ! code; ! }; ! </simpara > ! <simpara > ! while(test) ! code; ! end; ! </simpara > ! </informalexample > </sect1 > </chapter > <chapter id="SymbolicComputation"> <title>Symbolic computations</title> - <simpara> - In order to do symbolic computations you need to create a symbolic variable using the - sym function - </simpara> - <informalexample> - <simpara>x = sym("x")</simpara> - </informalexample> - <simpara> - this variable can then be used in normal calculations or the functions in the - symbolic group. - </simpara> - <informalexample> - <simpara>derivative(x^2 + x, x)</simpara> - <simpara>integral(x^2 + x, x)</simpara> - </informalexample> <warning> ! <simpara>Some symbolic functions may fail if the expression isn't surrounded by quotes</simpara> </warning> </chapter> </part> --- 120,232 ---- <simpara>2:2:8 = [2,4,6,8]</simpara > </informalexample > ! </chapter > ! <chapter id="usage_controlstructures"> ! <title >Control Structures</title > ! <sect1 id="if"> ! <title >If</title > ! <simpara >There are two ways of writing if statements</simpara > ! <programlisting> ! if(test1) ! { ! code1; ! } ! elseif(test2) ! { ! code2; ! } ! else ! { ! code3; ! }; ! </programlisting> ! ! <programlisting> ! if test1 ! code1; ! elseif test2 ! code2; ! else ! code3; ! end; ! </programlisting> </sect1 > + <sect1 id="switch"> <title >Switch</title > <simpara >The two ways of writing switch statements are:</simpara > ! <programlisting> ! switch(variable) ! { ! case(val1): ! { ! code1; ! } ! case(val2): ! { ! code2; ! } ! default/otherwise: ! { ! code3; ! } ! }; ! </programlisting> ! ! <programlisting> ! switch(variable) ! case val1: ! code1; ! case val2: ! code2; ! default/otherwise: ! code3: ! end; ! </programlisting> </sect1 > + <sect1 id="for"> <title >For</title > <simpara >The two ways of writing the for statement are:</simpara > ! <programlisting> ! for(initialisiation, test, increment) ! { ! code; ! }; ! </programlisting> ! ! <programlisting> ! for variable = vector ! code; ! end; ! </programlisting > </sect1 > + <sect1 id="while"> <title >While</title > <simpara >The two ways of writing a while statement are:</simpara > ! <programlisting> ! while(test) ! { ! code; ! }; ! </programlisting> ! ! <programlisting> ! ! while(test) ! code; ! end; ! </programlisting> </sect1 > </chapter > + <chapter id="SymbolicComputation"> <title>Symbolic computations</title> <warning> ! <simpara>Symbolic functions are not supported right now!</simpara> </warning> </chapter> + </part> |
|
From: Stefan M. <st_...@us...> - 2007-01-02 10:42:43
|
Update of /cvsroot/mathlib/mathlib/Documentation/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv32310/Documentation/src Modified Files: installingandrunning.xml Log Message: more programlistings Index: installingandrunning.xml =================================================================== RCS file: /cvsroot/mathlib/mathlib/Documentation/src/installingandrunning.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** installingandrunning.xml 2 Nov 2006 17:32:56 -0000 1.9 --- installingandrunning.xml 2 Jan 2007 10:42:39 -0000 1.10 *************** *** 6,12 **** <title>Installing And Running</title> ! <sect1 id="obtaining"> ! <title >Obtaining <application class="software">JMathLib</application ></title > ! <para>The latest release of <application class="software">JMathLib</application > can be obtained from the Sourceforge site.</para> --- 6,12 ---- <title>Installing And Running</title> ! <sect1 id="obtaining"> ! <title >Obtaining <application class="software">JMathLib</application ></title > ! <para>The latest release of <application class="software">JMathLib</application > can be obtained from the Sourceforge site.</para> *************** *** 29,33 **** <para><command>cvs -d:pserver:ano...@cv...:/cvsroot/mathlib login</command></para> <para><command>cvs -z8 -d:pserver:ano...@cv...:/cvsroot/mathlib co mathlib</command></para> ! </sect1> <sect1 id="installing"> --- 29,33 ---- <para><command>cvs -d:pserver:ano...@cv...:/cvsroot/mathlib login</command></para> <para><command>cvs -z8 -d:pserver:ano...@cv...:/cvsroot/mathlib co mathlib</command></para> ! </sect1> <sect1 id="installing"> |
|
From: Stefan M. <st_...@us...> - 2006-12-31 10:42:50
|
Update of /cvsroot/mathlib/mathlib In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv22655 Modified Files: ChangeLog.txt Log Message: Index: ChangeLog.txt =================================================================== RCS file: /cvsroot/mathlib/mathlib/ChangeLog.txt,v retrieving revision 1.135 retrieving revision 1.136 diff -C2 -d -r1.135 -r1.136 *** ChangeLog.txt 31 Dec 2006 10:33:55 -0000 1.135 --- ChangeLog.txt 31 Dec 2006 10:42:44 -0000 1.136 *************** *** 21,25 **** Updated functions: col.m, diag.java, imag.java, real.java, row.m, size.java, tic.java ! ---- HISTORY ------------------------------------------------------------------ --- 21,25 ---- Updated functions: col.m, diag.java, imag.java, real.java, row.m, size.java, tic.java ! ---- HISTORY ------------------------------------------------------------------ |
|
From: Stefan M. <st_...@us...> - 2006-12-31 10:34:00
|
Update of /cvsroot/mathlib/mathlib In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv18906 Modified Files: ChangeLog.txt Log Message: Index: ChangeLog.txt =================================================================== RCS file: /cvsroot/mathlib/mathlib/ChangeLog.txt,v retrieving revision 1.134 retrieving revision 1.135 diff -C2 -d -r1.134 -r1.135 *** ChangeLog.txt 30 Dec 2006 21:29:57 -0000 1.134 --- ChangeLog.txt 31 Dec 2006 10:33:55 -0000 1.135 *************** *** 10,23 **** New functions: angle.java, close.java, compan.m, complement.m, createnewfile.java, ! cumprod.java, cumsum.m, create_set.m, conj.java, delete.java, ! det.m, dot.m, eq.m, ge.m, gray2ind.m, gray.m, gt.m, ! hankel.m, inf.java, inv.m, isdefinite.m, isdirectory.java, isfile.java, ! isfinite.java, ishidden.java, isnan.java, isinf.java, ! issymmetric.m, lastmodified.java, le.m, lookup.m, mkdir.java, nan.java, ne.m, ! ntsc2rgb.m, nper.m, numel.java, ! orth.m, pascal.m, perms.m, pmt.m, polyval.m, polyreduce.m, poly.m, pv.m, pvl.m, ! qtransvmat.m, repmat.java, rmdir.java, roots.m, size_equal.m, sort.java, ! stril.m, sylvester_matrix.m, toeplitz.m, triangle_lw.m, triangle_sw.m, triu.m, ! vech.m, wilkinson.m, Updated functions: --- 10,21 ---- New functions: angle.java, close.java, compan.m, complement.m, createnewfile.java, ! cumprod.java, cumsum.m, create_set.m, conj.java, delete.java, det.m, dot.m, ! eq.m, ge.m, gray2ind.m, gray.m, gt.m, hankel.m, inf.java, inv.m, isdefinite.m, ! isdirectory.java, isfile.java, isfinite.java, ishidden.java, isnan.java, ! isinf.java, issymmetric.m, lastmodified.java, le.m, lookup.m, mkdir.java, ! nan.java, ne.m, ntsc2rgb.m, nper.m, numel.java, orth.m, pascal.m, perms.m, ! pmt.m, polyval.m, polyreduce.m, poly.m, pv.m, pvl.m, qtransvmat.m, repmat.java, ! rmdir.java, roots.m, size_equal.m, sort.java, stril.m, sylvester_matrix.m, ! toeplitz.m, triangle_lw.m, triangle_sw.m, triu.m, vech.m, wilkinson.m, Updated functions: *************** *** 26,30 **** ---- HISTORY ------------------------------------------------------------------ ! 2006/12/xx stefan * --- 24,28 ---- ---- HISTORY ------------------------------------------------------------------ ! 2006/12/xx stefan * |
|
From: Stefan M. <st...@he...> - 2006-06-16 19:37:03
|
TEST2 |
|
From: Stefan M. <st...@he...> - 2006-06-16 18:30:23
|
test |