diff --git a/docs.html b/docs.html index 3e137fbc..0d00d099 100644 --- a/docs.html +++ b/docs.html @@ -2502,12 +2502,12 @@ before including the armadillo header file (eg. #define ARMA_NO_DEB Alternatively, the .at(n), .at(i,j) and .at(i,j,k) element access forms can be used, which do not have bounds checks. Either way, disabling the bounds checks is not recommended until your code has been thoroughly tested and debugged --- it's better to write correct code first, and then maximise its speed. +-- it is better to write correct code first, and then maximise its speed.
  • The indices of elements are specified via the uword type, which is a typedef for an unsigned integer type. -When using loops to access elements, it's best to use uword instead of int. +When using loops to access elements, it is best to use uword instead of int. For example: for(uword i=0; i<X.n_elem; ++i) { X(i) = ... }

  • @@ -5708,7 +5708,7 @@ If the matrix expression appears to be singular, the output matrix is reset and Caveats: