1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
% MIN [overload base function]
% Copyright Notice
%
% Copyright (C) 2015 CentraleSupelec
% Copyright (C) 2013 SUPELEC
%
% Author: Julien Bect <julien.bect@supelec.fr>
% Copying Permission Statement
%
% This file is part of
%
% STK: a Small (Matlab/Octave) Toolbox for Kriging
% (http://sourceforge.net/projects/kriging)
%
% STK is free software: you can redistribute it and/or modify it under
% the terms of the GNU General Public License as published by the Free
% Software Foundation, either version 3 of the License, or (at your
% option) any later version.
%
% STK is distributed in the hope that it will be useful, but WITHOUT
% ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
% or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
% License for more details.
%
% You should have received a copy of the GNU General Public License
% along with STK. If not, see <http://www.gnu.org/licenses/>.
function varargout = min (x, y, dim)
if nargin > 3,
stk_error ('Too many input arguments.', 'TooManyInputArgs');
end
varargout = cell (1, max (1, nargout));
if (nargin < 2) || (isempty (y)), % Act on rows or columns
if nargin < 3, dim = 1; end
[varargout{:}] = apply (x, dim, @min, []);
else % Apply 'min' elementwise
if nargin > 2,
errmsg = 'Too many input arguments (elementwise min assumed)';
stk_error (errmsg, 'TooManyInputArgs');
else
[varargout{:}] = bsxfun (@min, x, y);
end
end % if
end % function min
%!test stk_test_dfbinaryop ('min', rand(7, 2), rand(7, 2));
%!test stk_test_dfbinaryop ('min', rand(7, 2), pi);
%!error stk_test_dfbinaryop ('min', rand(7, 2), rand(7, 3));
%!shared x1, df1
%! x1 = rand(9, 3);
%! df1 = stk_dataframe(x1, {'a', 'b', 'c'});
%!assert (isequal (min(df1), min(x1)))
%!assert (isequal (min(df1, [], 1), min(x1)))
%!assert (isequal (min(df1, [], 2), min(x1, [], 2)))
%!error (min(df1, df1, 2))
%!test
%! x = stk_dataframe ([5; 2; 4]);
%! [M, k] = min (x);
%! assert ((M == 2) && (k == 2));
|