<< cov | Statistics | normpdf >> |
R = mean(M) |
R = mean(M, d) |
R = mean(M, 'all') |
R = mean(M, d, t) |
R = mean(M, 'all', t) |
R = mean(M, d, t, f) |
R = mean(M, 'all', t, f) |
an array of double, single, integers, ...
dimension to operate along: positive integer scalar.
a string: 'default', 'double' or 'native'.
a string: 'includenan' or 'omitnan'.
Mean of array elements.
R = mean(M) returns the mean of the array elements of M.
M = uint8([10:30:70;20:30:80;30:30:90]);
R = mean(M, 'native')
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET