DEBSOURCES
Skip Quicknav
sources / psychtoolbox-3 / 3.0.9%2Bsvn2579.dfsg1-1 / Psychtoolbox / PsychSignal / MeanAll.m
12345678
function s = MeanAll(in) % [s] = MeanAll(in) % returns the mean of input IN. IN can be anything from a scalar to an N-D % matrix % % DN 2008 s = mean(in(:));