[Mathlib-commitlog] SF.net SVN: mathlib:[767] JMathLib/trunk/src/jmathlib/toolbox/test/ testFunctio
Status: Beta
Brought to you by:
st_mueller
|
From: <st_...@us...> - 2009-01-25 07:47:01
|
Revision: 767
http://mathlib.svn.sourceforge.net/mathlib/?rev=767&view=rev
Author: st_mueller
Date: 2009-01-25 07:46:58 +0000 (Sun, 25 Jan 2009)
Log Message:
-----------
bugfix: correction of 'adf'+888 let to some error with disp('asdf'+5) -> disp(['asdf' num2str(5)])
Modified Paths:
--------------
JMathLib/trunk/src/jmathlib/toolbox/test/testFunctionWhile001.m
Modified: JMathLib/trunk/src/jmathlib/toolbox/test/testFunctionWhile001.m
===================================================================
--- JMathLib/trunk/src/jmathlib/toolbox/test/testFunctionWhile001.m 2009-01-24 20:24:50 UTC (rev 766)
+++ JMathLib/trunk/src/jmathlib/toolbox/test/testFunctionWhile001.m 2009-01-25 07:46:58 UTC (rev 767)
@@ -5,7 +5,7 @@
{
y=y+1;
t=t+y;
- disp("y=" + y + " t= " + t);
+ disp(["y=" num2str(y) " t= " num2str(t)]);
newline();
}
end;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|