Matrix Multiply
Computes the matrix product of the inputs. Inputs must be compatible. Also accepts tuples (treated as vectors) as inputs. Tuples in input A will be treated as row vectors. Tuples in input B will be treated as column vectors. Arrays of inputs will be computed element-wise with broadcasting if necessary.
Installation
To use this Node, you must enable omni.graph.nodes
in the Extension Manager.
Inputs
Name |
Type |
Description |
Default |
---|---|---|---|
A (a) |
|
First matrix or row vector to multiply |
|
B (b) |
|
Second matrix or column vector to multiply |
Outputs
Name |
Type |
Description |
Default |
---|---|---|---|
Product (output) |
|
Product of the two matrices |