toon-members
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Toon-members] TooN Cholesky.h


From: Tom Drummond
Subject: [Toon-members] TooN Cholesky.h
Date: Mon, 20 Apr 2009 20:33:47 +0000

CVSROOT:        /cvsroot/toon
Module name:    TooN
Changes by:     Tom Drummond <twd20>    09/04/20 20:33:47

Modified files:
        .              : Cholesky.h 

Log message:
        removed documentation to non-existent members of Cholesky

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/TooN/Cholesky.h?cvsroot=toon&r1=1.34&r2=1.35

Patches:
Index: Cholesky.h
===================================================================
RCS file: /cvsroot/toon/TooN/Cholesky.h,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -b -r1.34 -r1.35
--- Cholesky.h  20 Apr 2009 17:55:46 -0000      1.34
+++ Cholesky.h  20 Apr 2009 20:33:46 -0000      1.35
@@ -51,16 +51,9 @@
 // create the Cholesky decomposition of A
 Cholesky<3> chol(A);
 // compute x = A^-1 * y
-Vector<3> x = cholA.inverse_times(y);
-// Identical to above
 x = cholA.backsub(y);
-// compute B = M*A^-1*M^T
-B = cholA.transform_inverse(M);
 //compute A^-1
 Matrix<3> Ainv = cholA.get_inverse();
-Matrix<3> C = ... // again, C is pos-def
-//compute the 'square-root' of C
-Matrix<3> L = Cholesky<3>::sqrt(C);
 @endcode
 @ingroup gDecomps
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]