COMPUTE THE PRODUCT OF TWO MATRICES¶
Computes the matrix product (A × B) of two input matrices. Use this worker whenever you need standard linear-algebra matrix multiplication inside a workflow, e.g. for coordinate transforms, stiffness assembly, or design-space projections.
Inputs¶
| Label | ID | Type | Default | Required | Description |
|---|---|---|---|---|---|
| Matrix 1 | matrix1 | matrix | — | Left-hand operand matrix (M × K); must be a numeric 2-D matrix whose column count matches the row count of Matrix 2. | |
| Matrix 2 | matrix2 | matrix | — | Right-hand operand matrix (K × N); must be a numeric 2-D matrix whose row count matches the column count of Matrix 1. |
Outputs¶
| Label | ID | Type | Description |
|---|---|---|---|
| matrix_multiply_output_1 | matrix_multiply_output_1 | matrix | Resulting product matrix (M × N) from the multiplication of Matrix 1 by Matrix 2; element type and precision match the inputs. |
Disciplines¶
- data.dataset.transform
Auto-generated from transformation schema. Worker id: matrix_multiply. Schema hash: 9b6aa87b09dd. Hand-curated docs in workerexamples/ override this page when present.