mean2.m 97 B

1234567
  1. % M = MEAN2(MTX)
  2. %
  3. % Sample mean of a matrix.
  4. function res = mean2(mtx)
  5. res = mean(mean(mtx));