home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / pascal / swag / math.swg / 0007_LOGRITHM.PAS.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1993-05-28  |  84 b   |  7 lines

  1. Function NlogX(X: Real; N:Real): Real;
  2.  
  3. begin
  4.   NlogX = Ln(X) / Ln(N);
  5. end;
  6.  
  7.