home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
C-SSP.ARJ
/
CXLOG2.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1984-08-08
|
275 b
|
13 lines
cxlog2(a,r)
/* this function finds the logarithm to the base 2 of */
/* a complex argument. */
float a[],r[];
{
cxloge(a,r);
r[0] = r[0] * 1.442695041;
r[1] = r[1] * 1.442695041;
}