Unix and Linux Discussions Tagged with log |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
6 |
73,098 |
Shell Programming and Scripting |
|
|
|
2 |
66,373 |
Shell Programming and Scripting |
|
|
|
6 |
39,975 |
OS X (Apple) |
|
|
|
6 |
6,864 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
4,988 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,160 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
4,271 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
6,153 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
4,005 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,819 |
UNIX for Beginners Questions & Answers |
|
|
|
9 |
7,188 |
Shell Programming and Scripting |
|
|
|
3 |
5,038 |
Shell Programming and Scripting |
|
|
|
3 |
3,326 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
3,877 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
8,869 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
3,216 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
20,130 |
Shell Programming and Scripting |
|
|
|
1 |
3,302 |
Solaris |
|
|
|
6 |
2,273 |
Shell Programming and Scripting |
|
|
|
7 |
4,007 |
Shell Programming and Scripting |
|
|
|
4 |
2,953 |
Shell Programming and Scripting |
|
|
|
5 |
2,690 |
Shell Programming and Scripting |
|
|
|
3 |
11,923 |
Red Hat |
|
|
|
1 |
3,667 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
2,524 |
Shell Programming and Scripting |
|
|
|
2 |
2,894 |
Shell Programming and Scripting |
|
|
|
5 |
1,813 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
4,383 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
4,938 |
Web Development |
|
|
|
4 |
7,091 |
Shell Programming and Scripting |
|
|
|
2 |
3,701 |
Linux |
|
|
|
2 |
3,525 |
Linux |
|
|
|
4 |
3,988 |
Shell Programming and Scripting |
|
|
|
4 |
61,292 |
Shell Programming and Scripting |
|
|
|
15 |
12,596 |
Shell Programming and Scripting |
|
|
|
1 |
2,457 |
Shell Programming and Scripting |
|
|
|
7 |
14,802 |
Shell Programming and Scripting |
|
|
|
18 |
9,362 |
Shell Programming and Scripting |
|
|
|
4 |
30,910 |
Shell Programming and Scripting |
|
|
|
4 |
8,450 |
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)