diff --git a/doc/overview.htm b/doc/overview.htm index 74d936a1..e235f0e8 100644 --- a/doc/overview.htm +++ b/doc/overview.htm @@ -284,24 +284,30 @@ matrices.

Comment -_asum +sasum OR dasum norm_1 (x) -sum |xi| -Computes the sum norm of a vector. +sum xi +Computes the l1 (sum) norm of a real vector. + + +scasum OR dzasum +no equivilent +sum re(xi) + sum im(xi) +Computes the sum of elements of a complex vector. _nrm2 norm_2 (x) sqrt (sum |xi|2 ) -Computes the euclidean norm of a vector. +Computes the linf (euclidean) norm of a vector. i_amax norm_inf (x)
norm_inf_index (x)
max |xi| -Computes the maximum norm of a vector.
+Computes the l2 (maximum) norm of a vector.
BLAS computes the index of the first element having this value.