- This wiki is out of date, use the continuation of this wiki instead
Log
From FenixWiki
(Difference between revisions)
| Revision as of 14:19, 29 July 2008 (edit) Rincewind (Talk | contribs) (→Example) ← Previous diff |
Current revision (18:06, 29 July 2008) (edit) (undo) Sandman (Talk | contribs) m (combined definition to one, like seen on CD page) |
||
| Line 8: | Line 8: | ||
| ==Definition== | ==Definition== | ||
| - | '''FLOAT''' log ( <'''FLOAT''' n> , <'''FLOAT''' b> ) | + | '''FLOAT''' log ( <'''FLOAT''' n> , [<'''FLOAT''' b>] ) |
| - | Returns a [http://en.wikipedia.org/wiki/Logarithm logarithm] of number | + | Returns a [http://en.wikipedia.org/wiki/Logarithm logarithm] of number ''n'' with base ''b''. If ''b'' is not specified, the number 10 will be used as base. |
| - | + | ||
| - | + | ||
| - | ''' | + | |
| - | + | ||
| - | + | ||
| == Parameters == | == Parameters == | ||
| Line 25: | Line 20: | ||
| == Returns == | == Returns == | ||
| - | '''FLOAT''' : The logarithm of n. | + | '''FLOAT''' : The logarithm of ''n''. |
| == Example == | == Example == | ||
| Line 33: | Line 28: | ||
| Global | Global | ||
| float logarithm=0.0; | float logarithm=0.0; | ||
| + | End | ||
| Process main() | Process main() | ||
| Line 47: | Line 43: | ||
| </pre> | </pre> | ||
| Used in example: [[import]], [[write_float]](), [[key]](), [[log]]() | Used in example: [[import]], [[write_float]](), [[key]](), [[log]]() | ||
| + | |||
| + | {{Logfuncbox}} | ||
Current revision
Contents |
[edit] Definition
FLOAT log ( <FLOAT n> , [<FLOAT b>] )
Returns a logarithm of number n with base b. If b is not specified, the number 10 will be used as base.
[edit] Parameters
| FLOAT n | - The number that will be used for the logarithm. |
| FLOAT base | - The base that will be used for the logarithm. |
[edit] Returns
FLOAT : The logarithm of n.
[edit] Example
Import "log.dll";
Global
float logarithm=0.0;
End
Process main()
Begin
write_float(0,160,100,4,&logarithm);
While(not(key(_esc)))
If (key(_1)) logarithm=log(1000,9); End
If (key(_2)) logarithm=log(1000); End
Frame;
End
End
Used in example: import, write_float(), key(), log()
| Log.DLL Functions | |
| • Ln() • Log() • Log2() • | |
Categories: Functions | Logdll | Dll
