Multiply

Computes the element-wise product of two or more inputs (multiplication). If one input has a higher dimension than the others, then the input with lower dimension will be repeated to match the dimension of the higher dimension input (broadcasting). eg: scalar ‘*’ tuple, tuple ‘*’ array of tuples, scalar ‘*’ array of tuples.

Installation

To use this Node, you must enable omni.graph.nodes in the Extension Manager.

Inputs

Name

Type

Description

Default

a

numerics

First number to multiply

b

numerics

Second number to multiply

Outputs

Name

Type

Description

Default

product

numerics

Product of the two numbers