Main Content

meanabs

Mean of absolute elements of matrix or matrices

Syntax

[m,n] = meanabs(x)

Description

[m,n] = meanabs(x) takes a matrix or cell array of matrices and returns,

m

Mean value of all absolute finite values

n

Number of finite values

If x contains no finite values, the mean returned is 0.

Examples

m = meanabs([1 2;3 4])
[m,n] = meanabs({[1 2; NaN 4], [4 5; 2 3]})

Version History

Introduced in R2010b

See Also

| |