From 2f28fdc95defaeb9ba4cf8ea3e6481480dfaf6e2 Mon Sep 17 00:00:00 2001 From: conrad Date: Mon, 3 May 2021 14:26:07 +1000 Subject: [PATCH] update docs for norm() --- docs.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs.html b/docs.html index 44cc3bea..a42f477f 100644 --- a/docs.html +++ b/docs.html @@ -10174,7 +10174,7 @@ Compute the p-norm of X, where X can be a vector or matrix
  • -For vectors, p is an integer ≥1, or one of: "-inf", "inf", "fro" +For vectors, p is an integer ≥1, or one of: "-inf", "inf", "fro"

  • @@ -10182,7 +10182,7 @@ For matrices, p is one of: 1, 2, "inf", "fro";

  • -"-inf" is the minimum norm, "inf" is the maximum norm, "fro" is the Frobenius norm +"-inf" is the minimum norm, "inf" is the maximum norm, "fro" is the Frobenius norm

  • @@ -10194,7 +10194,7 @@ For vector norm with p=2 and matrix norm with p="fro", a robust al

  • -To obtain the zero "norm" or Hamming "norm" (the number of non-zero elements), +To obtain the zero/Hamming pseudo-norm (the number of non-zero elements), use this expression: accu(X != 0)