Info |
---|
Multipliziert zwei Werte. |
Funktionsbeschreibung
Berechnet das Produkt von zwei Faktoren.
Eingänge
A(float): Erster Faktor.
B(float): Zweiter Faktor.
(Optional) Inhibit 1-n(boolean): (Optionale) Sperreingänge, lösen die →Abbruchfunktion aus.
(Optional) Trigger 1-n(boolean): (Optionale) Triggereingänge, lösen die →Triggerfunktion aus.
Ausgänge
A*B (float): Berechnetes Produkt von A und B.
Hinweise
Praktische Anwendungsbeispiele
Zugrundeliegender Modulbaustein
→polynomial
Status | ||||
---|---|---|---|---|
|
→Polynomial-Modulbaustein
Code
Status | ||||
---|---|---|---|---|
|
Der Custom-Logik-Code dieses Logik-Moduls lautet wie folgt:
Codeblock |
---|
{
"Level": [
[ "$FactorA", "float", 0 ],
[ "$FactorB", "float", 0 ],
[ "$Result", "float", 0 ],
[ "$VAR<Inhibit?>", "bool", false ] ],
"Module": [
[ "Break", [ "$VAR<Inhibit?>" ] ],
[ "Polynomial", "$FactorA", "$Result", [ 0, "$FactorB" ] ] ],
"Input": [
[ "A", "Erster Faktor", "$FactorA", "c" ],
[ "B", "Zweiter Faktor", "$FactorB", "c" ],
[ "Inhibit", "INHIBIT", "$VAR<Inhibit?>", "u" ] ],
"Output": [
[ "A*B", "Produkt von A und B", "$Result", "c" ] ]
} |