Previous Up Next

15.4.4  Matrix row norm

The row norm of a matrix A is maxk(∑j |aj,k|). (This is also an operator norm; see Section 15.4.6.) The rownorm or rowNorm command finds the row norm of a matrix. For matrices, linfnorm is also a synonym.

Example

rownorm([[1,2],[3,-4]])
     
7           

Indeed, max{1+2,3+4}=7.


Previous Up Next