home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 5
/
DATAFILE_PDCD5.iso
/
utilities
/
r
/
rlab
/
!RLaB
/
toolbox
/
angle
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-02-21
|
139 b
|
10 lines
//
// Caclulate phase angle of a complex value.
// angle = atan2(imag,real)
//
angle = function(a)
{
return atan2(imag(a), real(a));
};