Differences between version 2 and previous revision of log(3).
Other diffs: Previous Major Revision, Previous Author, or view the Annotated Edit History
Newer page: | version 2 | Last edited on Thursday, November 20, 2003 6:23:11 pm | by JohnMcPherson | Revert |
Older page: | version 1 | Last edited on Tuesday, June 4, 2002 12:24:27 am | by perry | Revert |
@@ -1,12 +1,6 @@
-EXP
!!!EXP
-NAME
-SYNOPSIS
-DESCRIPTION
-ERRORS
-CONFORMING TO
-SEE ALSO
+
----
!!NAME
@@ -37,38 +31,27 @@
The __pow()__ function returns the value of ''x''
raised to the power of ''y''.
+
!!ERRORS
-
The __log()__ and __log10()__ functions can return the
following errors:
-__
EDOM__
+;[
EDOM]: The argument ''x'' is negative.
-The argument ''x'' is negative.
-
-
-__
ERANGE__
-
-
-
The argument ''x'' is zero. The log of zero is not
-
defined.
+;[
ERANGE]:
The argument ''x'' is zero. The log of zero is not defined.
The __pow()__ function can return the following
error:
-__
EDOM__
-
+;[
EDOM]: The argument ''x'' is negative and ''y'' is not an integral value. This would result in a complex number.
-The argument ''x'' is negative and ''y'' is not an
-integral value. This would result in a complex
-number.
!!CONFORMING TO
SVID 3, POSIX, BSD 4.3, ISO 9899