DIVIDED TWO MATRICES

Performs element-wise division of two same-shaped matrices (Matrix 1 ÷ Matrix 2). Use this worker whenever you need a pointwise quotient of two numerical matrices within a workflow.

When to use

Classification: process.

Tagged: division, elementwise, linear_algebra, matrix, scalar_divide, transform.

Inputs

Label ID Type Default Required Description
Matrix 1 matrix1 matrix   Numerator matrix; must have the same dimensions as Matrix 2. Provide a 2-D numerical matrix — leave unconnected only if the operation is not yet wired (node is optional but required at runtime).
Matrix 2 matrix2 matrix   Denominator matrix; must have the same dimensions as Matrix 1. Ensure no zero-valued cells to avoid division-by-zero artefacts in the output.

Outputs

Label ID Type Description
matrix_scalardivide_output_1 matrix_scalardivide_output_1 matrix Resulting matrix of the same shape as the inputs, where each cell equals the corresponding cell of Matrix 1 divided by the corresponding cell of Matrix 2 (element-wise quotient).

Disciplines

  • data.dataset.transform

Auto-generated from transformation schema. Worker id: matrix_scalardivide. Schema hash: 32330c96018b. Hand-curated docs in workerexamples/ override this page when present.