aboutsummaryrefslogtreecommitdiffstats
path: root/matrix.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2001-11-30 10:10:24 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2001-11-30 10:10:24 +0000
commit0281c83ceeb91c54dd2f4bd00755cde0fbf463c0 (patch)
tree12ae6dc648708dac18416bf4975575064dbe3c5b /matrix.c
parentrun make indent (diff)
downloadw3m-0281c83ceeb91c54dd2f4bd00755cde0fbf463c0.tar.gz
w3m-0281c83ceeb91c54dd2f4bd00755cde0fbf463c0.zip
[w3m-dev 02593]
From: Tsutomu Okada <okada@furuno.co.jp>
Diffstat (limited to '')
-rw-r--r--matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/matrix.c b/matrix.c
index 678f34d..38b2f87 100644
--- a/matrix.c
+++ b/matrix.c
@@ -1,7 +1,7 @@
/*
* matrix.h, matrix.c: Liner equation solver using LU decomposition.
- * $Id: matrix.c,v 1.5 2001/11/29 10:22:58 ukai Exp $
+ * $Id: matrix.c,v 1.6 2001/11/30 10:10:24 ukai Exp $
*
* by K.Okabe Aug. 1999
*
@@ -139,7 +139,7 @@ LUsolve(Matrix A, int *indexarray, Vector b, Vector x)
}
/* m_inverse -- returns inverse of A, provided A is not too rank deficient
- * * * * * * * -- uses LU factorisation */
+ * -- uses LU factorisation */
#if 0
Matrix
m_inverse(Matrix A, Matrix out)