home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / utils / mathstud / log10.m < prev    next >
Encoding:
Text File  |  1995-05-19  |  107 b   |  6 lines

  1. function [y] = log10(x)
  2. %y=log10(x)
  3. %compute the logarithm, base 10, of x
  4.  
  5. y = log(x+eps) ./ log(10);
  6.