toon-members
[Top][All Lists]
Advanced

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

[Toon-members] TooN/doc LUdoc.h matrixdoc.h


From: Tom Drummond
Subject: [Toon-members] TooN/doc LUdoc.h matrixdoc.h
Date: Sun, 11 Mar 2007 21:26:35 +0000

CVSROOT:        /sources/toon
Module name:    TooN
Changes by:     Tom Drummond <twd20>    07/03/11 21:26:35

Modified files:
        doc            : LUdoc.h matrixdoc.h 

Log message:
        error in documentation fixed

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/TooN/doc/LUdoc.h?cvsroot=toon&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/TooN/doc/matrixdoc.h?cvsroot=toon&r1=1.7&r2=1.8

Patches:
Index: LUdoc.h
===================================================================
RCS file: /sources/toon/TooN/doc/LUdoc.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- LUdoc.h     6 Mar 2007 21:55:10 -0000       1.4
+++ LUdoc.h     11 Mar 2007 21:26:35 -0000      1.5
@@ -20,7 +20,7 @@
 
 #include <iostream>
 #include <lapack.h>
-#include <TooN/toon.h>
+#include <TooN/TooN.h>
 
 /// All classes and functions are within this namespace
 namespace TooN

Index: matrixdoc.h
===================================================================
RCS file: /sources/toon/TooN/doc/matrixdoc.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- matrixdoc.h 21 Sep 2006 11:02:09 -0000      1.7
+++ matrixdoc.h 11 Mar 2007 21:26:35 -0000      1.8
@@ -167,7 +167,7 @@
   @code
   double d[2][3] = {{1, 2, 3}, {4, 5, 6}};
   Matrix<2,3> m(d);
-  double e = m(1,2);     // now e = 5.0;
+  double e = m(1,2);     // now e = 6.0;
   @endcode
   */
   const double& operator() (int r, int c) const;
@@ -180,7 +180,7 @@
   double d[2][3] = {{1, 2, 3}, {4, 5, 6}};
   Matrix<2,3> m(d);
   m(1,2) = 8;     // now d = [1 2 3]
-                  //         [4 8 6]
+                  //         [4 5 8]
   @endcode
   */
   double& operator() (int r, int c);




reply via email to

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