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