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