This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| crpl:docs:log10 [2015/03/10 07:03] – warren | crpl:docs:log10 [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ~~DISCUSSION~~ | + | |
| <- [[crpl: | <- [[crpl: | ||
| ===== log10 ===== | ===== log10 ===== | ||
| - | ^Arguments^Result^Notation^ | + | log10 |
| - | |A floating point or integer|The natural log|'' | + | |
| === Description === | === Description === | ||
| - | The base ten logarithm. Gives the number of digits in the number before the decimal point. On zero, returns -inf. Below zero, returns NaN, a special value that always causes failure when compared to other numbers. (ie. (NaN<0) => false, (Nan>=0) => false) | + | The base ten logarithm. Gives the number of digits in the number before the decimal point. On zero, returns -inf. Below zero, returns NaN, a special value that always causes failure when compared to other numbers. (ie. (NaN<0) => false, (NaN>=0) => false) |
| == other logarithms == | == other logarithms == | ||
| Line 17: | Line 16: | ||
| === Examples === | === Examples === | ||
| - | < | + | < |
| ShowTraceLog | ShowTraceLog | ||
| + | ClearTraceLog | ||
| -1 log10 trace #NaN | -1 log10 trace #NaN | ||
| 0 log10 trace #-inf | 0 log10 trace #-inf | ||