Function multiplies the value in input a
by the value in input b
. The result of the operation is passed to the output y
.
Example in Python
y = a * b
Function menu | Block diagram |
---|---|
![]() |
![]() |
Name | Type | Description |
---|---|---|
a |
float, int32 | Multiplier |
b |
float, int32 | Multiplicand |
Name | Type | Description |
---|---|---|
y |
see note | Product |
Type of the value at the output
y
corresponds to the type of the value at the inputa
.
Not available