Arranged this page a bit better for consistency. |
Technically "Pseudo-generic". |
||
Line 4: | Line 4: | ||
|Inputs= | |Inputs= | ||
[ | [ | ||
{"Name":"N", "Type":" | {"Name":"N", "Type":"Dummy"}, | ||
{"Name":"Base", "Type":" | {"Name":"Base", "Type":"Dummy"} | ||
] | ] | ||
|Outputs= | |Outputs= | ||
[ | [ | ||
{"Name":"*", "Type":" | {"Name":"*", "Type":"Dummy"} | ||
] | ] | ||
|}} | |}} | ||
Line 17: | Line 17: | ||
== Inputs == | == Inputs == | ||
=== N ( | === N (Pseudo-generic) === | ||
The number we are searching for using the base. | The number we are searching for using the base. | ||
=== Base ( | === Base (Pseudo-generic) === | ||
The number being chain multiplied. | The number being chain multiplied. | ||
Line 27: | Line 27: | ||
== Outputs == | == Outputs == | ||
=== * ( | === * (Pseudo-generic) === | ||
Returns the exponent result. | Returns the exponent result. |
Latest revision as of 10:07, 22 May 2024
Logₙ
Math
The Log N
node takes in the number we want to get to (labeled N
) and the base number (The number you're multiplying).
Inputs
N (Pseudo-generic)
The number we are searching for using the base.
Base (Pseudo-generic)
The number being chain multiplied.
Outputs
* (Pseudo-generic)
Returns the exponent result.
Examples
For example, if you take the base 2 and multiply it three times, you get: 2 × 2 × 2 = 8
In this case, 2 is the base, 3 is the exponent, and 8 is the result.
The answer is 3, because: 2³ = 8
We write this as: log₂(8) = 3
So, the logarithm (log) of 8 with base 2 is 3.
Example Flux
-
LogN Example