~ubuntu-branches/ubuntu/trusty/psychtoolbox-3/trusty-proposed

« back to all changes in this revision

Viewing changes to Psychtoolbox/PsychSignal/MatMin.m

  • Committer: Package Import Robot
  • Author(s): Yaroslav Halchenko
  • Date: 2013-11-19 23:34:50 UTC
  • mfrom: (3.1.4 experimental)
  • Revision ID: package-import@ubuntu.com-20131119233450-f7nf92vb8qavjmk8
Tags: 3.0.11.20131017.dfsg1-3
Upload to unsable since fresh glew has arrived to sid!

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
% [minval] = MatMin(image)
3
3
% Find the minumum value in a matrix.
4
4
 
5
 
minval = min(min(image)');
 
5
% 6/13/12    dn     Generalize to N-D input by forwarding to MinAll()
 
6
 
 
7
minval = MinAll(image);