.. _auto_matrix_inverse: *MATRIX INVERSE* ================ Computes the mathematical inverse of a square matrix. Use this worker whenever you need to solve linear systems, reverse a linear transformation, or prepare inverted matrices for downstream computation. When to use ----------- Classification: **process**. Tagged: ``inverse``, ``linear_algebra``, ``matrix``, ``square_matrix``, ``transformation``. Inputs ------ .. list-table:: :header-rows: 1 :widths: 20 20 20 20 20 20 * - Label - ID - Type - Default - Required - Description * - Matrix To Be Inverted - matrixtobeinverted - matrix - — - - The square matrix (n×n) to be inverted; must be non-singular (i.e. have a non-zero determinant). Provide as a 2-D numeric matrix — leave unconnected only if the inverse is not yet needed in the workflow. Outputs ------- .. list-table:: :header-rows: 1 :widths: 20 20 20 20 * - Label - ID - Type - Description * - matrix_inverse_output_1 - matrix_inverse_output_1 - matrix - The computed inverse matrix (n×n) such that A × A⁻¹ = I; same dimensions as the input matrix, returned as a 2-D numeric matrix. Disciplines ----------- - data.dataset.transform .. raw:: html

Auto-generated from transformation schema. Worker id: matrix_inverse. Schema hash: 5c81f1d124f2. Hand-curated docs in workerexamples/ override this page when present.