pagenorm
Page-wise matrix or vector norm
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.When
pagenorm
operates on a single matrix or vector, the results might differ fromnorm
slightly due to floating-point round-off error.
Extended Capabilities
Version History
Introduced in R2022b