Skip to content

Commit

Permalink
Merge pull request #9 from tschmidt23/master
Browse files Browse the repository at this point in the history
a few spelling corrections
  • Loading branch information
edrosten committed Sep 22, 2015
2 parents 9224141 + 87ba150 commit 2a21718
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/cramer.h
Expand Up @@ -5,7 +5,7 @@ TooN aims to be a fast library, and may choose between one of several algorithms
depending on the size of the arguments. However TooN will never substitute a
fast but numerically inferior algorithm. For example LU decomposition, Gaussian
elimination and Gauss-Jordan reduction all have similar numerical properties for
computing a matrix inverse. Direct inversino using Cramer's rule is
computing a matrix inverse. Direct inversion using Cramer's rule is
significantly less stable, even for 3x3 matrices.
The following code computes a matrix inverse of the ill conditioned matrix:
Expand Down
4 changes: 2 additions & 2 deletions doc/documentation.h
Expand Up @@ -216,7 +216,7 @@ This section is arranged as a FAQ. Most answers include code fragments. Assume
double* my_data;
@endcode
When a Vector is made <code>const</code>, C++ inserts <code>const</code> in
to those types. The <code>const</code> it inserts it top level, so these
to those types. The <code>const</code> it inserts is top level, so these
become (respectively):
@code
const double my_data[3];
Expand Down Expand Up @@ -363,7 +363,7 @@ This section is arranged as a FAQ. Most answers include code fragments. Assume
Matrix<2> m = Idendity;
Matrix<> m2 = Identity(3);
@endcode
note that you need to specify the size in the dynamic case.
Note that you need to specify the size in the dynamic case.
Matrices can be filled from data in row-major order:
@code
Expand Down

0 comments on commit 2a21718

Please sign in to comment.