log: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "<code>_([a-zA-Z0-9_]+) += +\[\[([a-zA-Z0-9_]+)\]\] +([0-9]+) *;?<\/code>" to "<sqf>_$1 = $2 $3;</sqf>") |
Lou Montana (talk | contribs) m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>") |
||
Line 34: | Line 34: | ||
|x1= <sqf>_log = log 10;</sqf> | |x1= <sqf>_log = log 10;</sqf> | ||
|x2= <code>_log = | |x2= <code>_log = log [[abs]] -10;</code> | ||
|x3= <code> | |x3= <code>finite [[log]] -10; {{cc|Returns false}}</code> | ||
|seealso= [[Math Commands]], {{Wikipedia|Logarithm|Logarithm}} | |seealso= [[Math Commands]], {{Wikipedia|Logarithm|Logarithm}} | ||
Line 48: | Line 48: | ||
<dd class="note"> | <dd class="note"> | ||
To clarify: | To clarify: | ||
<code>y = 10 ^ x // x = | <code>y = 10 ^ x // x = log y</code> | ||
People use logarithm at the purpose of simplifying multiplication via exponents plus years before. | People use logarithm at the purpose of simplifying multiplication via exponents plus years before. | ||
<code>23456*45634 = 1.07039e+009 | <code>23456*45634 = 1.07039e+009 |
Revision as of 11:10, 12 May 2022
Description
- Description:
- Base-10 logarithm of x.
- Groups:
- Math
Syntax
Examples
Additional Information
- See also:
- Math Commands, Logarithm
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
- Posted on 23:14, 16 Jun 2014
- ffur2007slx2_5
-
To clarify:
y = 10 ^ x // x = log y
People use logarithm at the purpose of simplifying multiplication via exponents plus years before.23456*45634 = 1.07039e+009 log 23456 = 4.37025; log 45634 = 4.65929; (log 23456) + (log 45634) = 9.02954 10^((log 23456) + (log 45634)) = 10 ^ 9.02954 // same as 23456*45634
As modern usage, for instance, to evaluate another exponent when multiple is known (Which magnitude is 4 times stronger than 8.3 earthquake?)://_Unknown = log x; 8.3 = log y // x = 10 ^_Unknown; y = 10 ^8.3 //x/y = (10 ^_Unknown)/(10 ^8.3) = log 4 // x/y = _Unknown – 8.3 = 0.6 //_result = 8.9 magnitude _result = (log 4) + 8.3
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Operation Flashpoint: Elite: Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Math