m Edit intro |
m Added flux node and rudimentary explanations. |
||
Line 1: | Line 1: | ||
{{#Invoke:ProtoFlux|GenerateUI | {{#Invoke:ProtoFlux|GenerateUI | ||
|Name= | |Name=GreatestCommonDivisor | ||
|Category= | |Category=Math | ||
|Inputs= | |||
[ | |||
{"Name":"A", "Type":"Dummy"}, | |||
{"Name":"B", "Type":"Dummy"} | |||
] | |||
|Outputs= | |Outputs= | ||
[ | [ | ||
{"Name":"", "Type":" | {"Name":"*", "Type":"Dummy"} | ||
] | ] | ||
|}} | |}} | ||
The | The <code>Greatest Common Divisor</code> node finds the biggest number between input A and B which can be divided by without a decimal. | ||
The node can be [[Type:Int|int]], [[Type:long|long]], [[Type:Uint|uint]], or [[Type:ulong|ulong]] type data. | |||
== Inputs == | |||
=== A (Pseudo-generic) === | |||
The first value to compare. | |||
=== B (Pseudo-generic) === | |||
The second value to compare. | |||
== Outputs == | == Outputs == | ||
=== * ( | === * (Pseudo-generic) === | ||
Returns the result. | |||
[[Category:ProtoFlux:Math | [[Category:ProtoFlux:Math]] |
Revision as of 18:53, 27 May 2024
GreatestCommonDivisor
Math
The Greatest Common Divisor
node finds the biggest number between input A and B which can be divided by without a decimal.
Inputs
A (Pseudo-generic)
The first value to compare.
B (Pseudo-generic)
The second value to compare.
Outputs
* (Pseudo-generic)
Returns the result.