Unix and Linux Discussions Tagged with log |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
6 |
3,616 |
Shell Programming and Scripting |
|
|
|
2 |
6,040 |
Shell Programming and Scripting |
|
|
|
6 |
10,190 |
OS X (Apple) |
|
|
|
6 |
1,874 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,426 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,072 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
1,616 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,296 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
1,850 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
1,425 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
3,257 |
Shell Programming and Scripting |
|
|
|
3 |
3,167 |
Shell Programming and Scripting |
|
|
|
3 |
1,330 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
1,941 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
2,405 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
748 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
2,969 |
Shell Programming and Scripting |
|
|
|
1 |
835 |
Solaris |
|
|
|
6 |
799 |
Shell Programming and Scripting |
|
|
|
7 |
973 |
Shell Programming and Scripting |
|
|
|
4 |
819 |
Shell Programming and Scripting |
|
|
|
5 |
938 |
Shell Programming and Scripting |
|
|
|
3 |
4,035 |
Red Hat |
|
|
|
1 |
1,414 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
930 |
Shell Programming and Scripting |
|
|
|
2 |
917 |
Shell Programming and Scripting |
|
|
|
5 |
589 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
1,849 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
3,133 |
Web Development |
|
|
|
4 |
4,392 |
Shell Programming and Scripting |
|
|
|
2 |
2,055 |
Linux |
|
|
|
2 |
2,438 |
Linux |
|
|
|
4 |
1,657 |
Shell Programming and Scripting |
|
|
|
4 |
45,045 |
Shell Programming and Scripting |
|
|
|
15 |
4,834 |
Shell Programming and Scripting |
|
|
|
1 |
1,602 |
Shell Programming and Scripting |
|
|
|
7 |
8,689 |
Shell Programming and Scripting |
|
|
|
18 |
5,940 |
Shell Programming and Scripting |
|
|
|
4 |
24,712 |
Shell Programming and Scripting |
|
|
|
4 |
6,412 |
Shell Programming and Scripting |
LOG1P(3) 1 LOG1P(3)
log1p - Returns log(1 + number), computed in a way that is accurate even when the value of number is close to zero
SYNOPSIS
float log1p (float $number)
DESCRIPTION
log1p(3) returns log(1 + $number) computed in a way that is accurate even when the value of $number is close to zero. log(3) might only
return log(1) in this case due to lack of precision.
PARAMETERS
o $number
- The argument to process
RETURN VALUES
log(1 + $number)
CHANGELOG
+--------+--------------------------------------------------+
|Version | |
| | |
| | Description |
| | |
+--------+--------------------------------------------------+
| 5.3.0 | |
| | |
| | This function is now available on all platforms |
| | |
+--------+--------------------------------------------------+
SEE ALSO
expm1(3), log(3), log10(3).
PHP Documentation Group LOG1P(3)