pagenorm
Description
returns the p-norm of each page of N
= pagenorm(X
,p
)X
, where
p
is 1
, 2
, or
Inf
.
If
p = 1
, thenN
contains the maximum absolute column sum of each page ofX
.If
p = 2
, thenN
contains the maximum singular value of each page ofX
.If
p = Inf
, thenN
contains the maximum absolute row sum of each page ofX
.
Examples
Input Arguments
Output Arguments
More About
Tips
The
squeeze
function is useful to reshape results frompagenorm
as a column vector.Results obtained using
pagenorm
are numerically equivalent to computing the norm of each of the same matrices in afor
-loop. However, the two results might differ slightly due to floating-point round-off error.
Extended Capabilities
Version History
Introduced in R2022b