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:
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) |
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(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) |