diff --git a/docs.html b/docs.html index aefc2c87..9ad48b4a 100644 --- a/docs.html +++ b/docs.html @@ -418,42 +418,43 @@ Conrad Sanderson and Ryan Curtin. logmat matrix logarithm logmat_sympd matrix logarithm of symmetric matrix min / max return extremum values -nonzeros return non-zero values norm various norms of vectors and matrices norm2est fast estimate of the matrix 2-norm -normalise normalise vectors to unit p-norm +normalise normalise vectors to unit p-norm +nonzeros extract all non-zero values +omit_nan / nonfinite extract all values that are non-NaN / only finite pow element-wise power -powmat matrix power +powmat matrix power prod product of elements rank rank of matrix -rcond reciprocal condition number +rcond reciprocal condition number repelem replicate elements replace replace specific elements with a new value -repmat replicate matrix in block-like fashion +repmat replicate matrix in block-like fashion reshape change size while keeping elements resize change size while keeping elements and preserving layout -reverse reverse order of elements +reverse reverse order of elements roots roots of polynomial shift circular shift of elements -shuffle randomly shuffle elements +shuffle randomly shuffle elements size obtain dimensions of given object sort sort elements -sort_index vector describing sorted order of elements +sort_index vector describing sorted order of elements sqrtmat square root of matrix sqrtmat_sympd square root of symmetric matrix -sum sum of elements +sum sum of elements sub2ind convert subscripts to linear index symmatu / symmatl generate symmetric matrix from given matrix -trace sum of diagonal elements +trace sum of diagonal elements trans transpose of matrix trapz trapezoidal numerical integration -trimatu / trimatl copy upper/lower triangular part +trimatu / trimatl copy upper/lower triangular part trimatu_ind / trimatl_ind obtain indices of upper/lower triangular part unique return unique elements -vecnorm obtain vector norm of each row or column of a matrix +vecnorm obtain vector norm of each row or column of a matrix vectorise flatten matrix into vector misc functions miscellaneous element-wise functions: exp, log, sqrt, round, sign, ... -trig functions trigonometric element-wise functions: cos, sin, tan, ... +trig functions trigonometric element-wise functions: cos, sin, tan, ... @@ -10124,12 +10125,12 @@ See also:
join_slices( cube C, mat M ) -


- -nonzeros( X ) - -


norm( X ) @@ -10738,6 +10685,106 @@ See also:
+


+ +nonzeros( X ) + + +


+ +omit_nan( X ) +
omit_nonfinite( X ) + +


@@ -20241,8 +20288,9 @@ List of additions and changes for each version:
  • (under development)
  • added balance() for producing balanced matrices where column and row norms are roughly the same
  • added find_nonnan() for finding indices of non-NaN elements
  • +
  • added omit_nan() to extract all non-NaN values
  • +
  • added omit_nonfinite() to extract all finite values
  • added standalone replace() function
  • -
  • ...