Searched defs:acot (Results 1 - 1 of 1) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/
H A DComplex.pm52 acsc acosec asec acot acotan
1024 # acot
1026 # Computes the arc cotangent acot(z) = atan(1 / z)
1028 sub acot { subroutine
1030 _divbyzero "acot(0)" if $z == 0;
1033 _divbyzero "acot(i)" if ($z - i == 0);
1034 _logofzero "acot(-i)" if ($z + i == 0);
1041 # Alias for acot().
1043 sub acotan { Math::Complex::acot(@_) }
1261 # Alias for acot()
[all...]

Completed in 16 milliseconds