function [varargout] = ne(varargin)
%~=  Not 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 = NE(A,B) is called for the syntax 'A ~= B' when A or B is an
%   object.

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

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