Returns the inverse of x. This function is not defined for signals.
Syntax
invert(x)
Types
Variable Name | Value Type | Variable Type | ||
---|---|---|---|---|
Argument: | x | real, complex | boolean, scalar, vector, matrix | |
Result: | z | real, complex | boolean, scalar, vector, matrix |
Calculator Input
Use the
button to complete the operation.Examples
Vectors:
ID | Description | Type | Value | Expression | |
---|---|---|---|---|---|
x | Argument | REAL VECTOR |
| [1,2,4] | |
z | Result | REAL VECTOR |
| invert(x) |
Matrices:
Computes the inverse of a nonsingular, square matrix x.
ID | Description | Type | Value | Expression | |
---|---|---|---|---|---|
x | Argument | REAL MATRIX |
| [[1,2],[3,4]] | |
z | Result | REAL MATRIX |
| invert(x) |