home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
POINT Software Programming
/
PPROG1.ISO
/
pascal
/
swag
/
math.swg
/
0007_LOGRITHM.PAS.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1993-05-28
|
84 b
|
7 lines
Function NlogX(X: Real; N:Real): Real;
begin
NlogX = Ln(X) / Ln(N);
end;