diff --git a/docs.html b/docs.html index bd3d9694..a65cb9f1 100644 --- a/docs.html +++ b/docs.html @@ -737,9 +737,12 @@ which is one of:
  • -Caveats: +Caveat:
  • @@ -1069,10 +1072,10 @@ Constructors: - - - - + + + + @@ -1085,9 +1088,14 @@ Constructors:
  • -When using the vec(n_elem) or vec(size(X)) constructors, by default the elements are not initialised (ie. may contain garbage values, including NaN); -the elements can be explicitly initialised by specifying the fill_type, -as per the Mat class +Caveat: +

  • @@ -1324,10 +1332,10 @@ Constructors:
    vec()  
    vec(n_elem) (elements are not initialised)
    vec(n_elem, fill_type) (elements are initialised)
    vec(size(X)) (elements are not initialised)
    vec(size(X), fill_type) (elements are initialised)
    vec(n_elem)  
    vec(n_elem, fill_type) (elements are initialised according to fill_type)
    vec(size(X))  
    vec(size(X), fill_type) (elements are initialised according to fill_type)
    vec(vec)  
    vec(mat) (std::logic_error exception is thrown if the given matrix has more than one column)
    vec(initializer_list)  
    - - - - + + + + @@ -1340,9 +1348,14 @@ Constructors:
  • -When using the rowvec(n_elem) or rowvec(size(X)) constructors, by default the elements are not initialised (ie. may contain garbage values, including NaN); -the elements can be explicitly initialised by specifying the fill_type, -as per the Mat class +Caveat: +

  • @@ -1589,10 +1602,10 @@ Constructors:
    rowvec()  
    rowvec(n_elem) (elements are not initialised)
    rowvec(n_elem, fill_type) (elements are initialised)
    rowvec(size(X)) (elements are not initialised)
    rowvec(size(X), fill_type) (elements are initialised)
    rowvec(n_elem)  
    rowvec(n_elem, fill_type) (elements are initialised according to fill_type)
    rowvec(size(X))  
    rowvec(size(X), fill_type) (elements are initialised according to fill_type)
    rowvec(rowvec)  
    rowvec(mat) (std::logic_error exception is thrown if the given matrix has more than one row)
    rowvec(initializer_list)  
    cube() - - - - + + + + @@ -1601,9 +1614,14 @@ Constructors:
  • -When using the cube(n_rows, n_cols, n_slices) or cube(size(X)) constructors, by default the elements are not initialised (ie. may contain garbage values, including NaN); -the elements can be explicitly initialised by specifying the fill_type, -as per the Mat class (except for fill::eye) +Caveat: +

  • cube(n_rows, n_cols, n_slices) (elements are not initialised)
    cube(n_rows, n_cols, n_slices, fill_type) (elements are initialised)
    cube(size(X)) (elements are not initialised)
    cube(size(X), fill_type) (elements are initialised)
    cube(n_rows, n_cols, n_slices)  
    cube(n_rows, n_cols, n_slices, fill_type) (elements are initialised according to fill_type)
    cube(size(X))  
    cube(size(X), fill_type) (elements are initialised according to fill_type)
    cube(cube)  
    cx_cube(cube, cube) (for constructing a complex cube out of two real cubes)