home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 2.ddi / ELFUN.DI$ / LOG10.M < prev    next >
Encoding:
Text File  |  1993-03-07  |  280 b   |  11 lines

  1. function [y] = log10(x)
  2. %LOG10    Common logarithm.
  3. %    LOG10(X)  is  the  logarithm  base 10 of the  elements of X.   
  4. %    Complex results are produced if X  is not positive.
  5. %
  6. %    See also LOG, EXP, LOGM.
  7.  
  8. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  9.  
  10. y = log(x) ./ log(10);
  11.