matrix_inverse
Computes the inverse of a stored square matrix.
Args:
name (str): The name of the tensor to invert.
Returns:
Tensor: The inverse of the matrix.
Raises:
ValueError: If the matrix is not found, is not square, or is singular (non-invertible).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the stored square matrix to invert. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |