function [varargout] = lt(varargin)
%<  Less than.
%   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 = LT(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:28 $

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