home *** CD-ROM | disk | FTP | other *** search
- /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
- * *
- * Copyright (c) 1997 MathSoft, Inc. All Rights Reserved. *
- * *
- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
- /*
- * Function: log ( x )
- *
- * Description:
- * log() calculates the base 10 logarithm of x
- *
- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
-
- function log ( x )
-
- log = log10(x);
-
- end;
-
-