The Instruction operation "multiply" can be used to multiply numerical inputs. Each input is multiplied together.
This example shows a simple integer multiplication:
<instruction operation="multiply">
<input value="6" />
<input value="3" />
<input value="2" />
</instruction>
36
This example shows simple decimal multiplication, notice that the default precision of "0" causes the result to be rounded to an integer:
<instruction operation="multiply">
<input value="3.1415926" />
<input value="3.1415926" />
</instruction>
10
This example shows decimal multiplication as before, but the precision attribute has been used to configure the precisoin of the output:
<instruction operation="multiply" precision="5">
<input value="3.1415926" />
<input value="3.1415926" />
</instruction>
9.86960