view m-toolbox/classes/@ao/ln.m @ 9:fbbfcd56e449 database-connection-manager

Remove dead code
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Mon, 05 Dec 2011 16:20:06 +0100
parents f0afece42f48
children
line wrap: on
line source

% LN overloads the log operator for analysis objects. Natural logarithm.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: LN overloads the log operator for analysis objects.
%              Natural logarithm.
%              LN(ao) is the natural logarithm of the elements of ao.data.
%
% CALL:        ao_out = ln(ao_in);
%              ao_out = ln(ao_in, pl);
%              ao_out = ln(ao1, pl1, ao_vector, ao_matrix, pl2);
%
% PARAMETERS:  see help for data2D/applymethod for additional parameters
% 
% NOTE: ao/ln is just a wrapper for ao/log.
%
% <a href="matlab:utils.helper.displayMethodInfo('ao', 'ln')">Parameter Sets</a>
%
% VERSION:     $Id: ln.m,v 1.36 2011/04/08 14:31:30 hewitson Exp $
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

function varargout = ln(varargin)
  
  if nargout > 0
    out = ltpda_run_method('log', varargin{:});
    varargout = utils.helper.setoutputs(nargout, out);
  else
    ltpda_run_method('log', varargin{:});
    varargout{1} = [varargin{:}];
  end
  
end

% END