[pure-lang-svn] SF.net SVN: pure-lang:[856] pure/trunk/examples/gauss.pure
Status: Beta
Brought to you by:
agraef
|
From: <ag...@us...> - 2008-09-25 09:09:09
|
Revision: 856
http://pure-lang.svn.sourceforge.net/pure-lang/?rev=856&view=rev
Author: agraef
Date: 2008-09-25 09:06:41 +0000 (Thu, 25 Sep 2008)
Log Message:
-----------
Comment change.
Modified Paths:
--------------
pure/trunk/examples/gauss.pure
Modified: pure/trunk/examples/gauss.pure
===================================================================
--- pure/trunk/examples/gauss.pure 2008-09-25 09:03:51 UTC (rev 855)
+++ pure/trunk/examples/gauss.pure 2008-09-25 09:06:41 UTC (rev 856)
@@ -30,7 +30,7 @@
transp i max_i p, i+1,
{// the top rows of the matrix remain unchanged:
x!!(0..i-1,0..m-1);
- // the pivot row, divided by the pivot:
+ // the pivot row, divided by the pivot element:
{x!(i,l)/x!(i,j) | l=0..m-1};
// subtract suitable multiples of the pivot row:
{x!(k,l)-x!(k,j)*x!(i,l)/x!(i,j) | k=i+1..n-1; l=0..m-1}}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|