function [varargout] = le(varargin)
%<=   Less than or equal.
%   A <= B does element by element comparisons between A and B
%   and returns a matrix of the same size with elements set to logical 1
%   where the relation is true and elements set to logical 0 where it is
%   not.  A and B must have the same dimensions unless one is a
%   scalar. A scalar can be compared with any size array.
%
%   C = LE(A,B) is called for the syntax 'A <= B' when A or B is an
%   object.

%   Copyright 1984-2003 The MathWorks, Inc.
%   $Revision: 1.9.4.3 $  $Date: 2004/12/24 20:46:27 $

if nargout == 0
  builtin('le', varargin{:});
else
  [varargout{1:nargout}] = builtin('le', varargin{:});
end
