Multiply Accumulate

Computes the product of two numbers and adds it to an internal accumulator. Multiply Accumulate is a point-by-point node, meaning it accepts only scalars.

1378

Inputs/Outputs

datatype_icon

x

An input for this operation. You can pass scalar values one point at a time to the Multiply Accumulate node.

Default value: 0

datatype_icon

y

An input for this operation. You can pass scalar values one point at a time to the Multiply Accumulate node.

Default value: 0

datatype_icon

initial value

Initial value to which the internal accumulator gets reset.

Default value: 0

datatype_icon

initialize?

A Boolean that determines whether the internal accumulator is reset to the initial value specified in initial value.

Values passed into the node are added to the internal accumulator until initialize? is set to True.

Default value: False

datatype_icon

result

Output of the multiply accumulate operation.