Group: | Linear Algebra |
See also: | ' trans |
Function: | inv | |
Description: | inv computes the inversematrix. As usally this functionality extends to higher dimensional arrays. |
Usage: | z = inv (x) | |
Input: | ||
x | array of square matrices | |
Output: | ||
z | array of square matrices |
x = #(1,2)~#(3,4) inv (x)
Contents of inv [1,] -2 1.5 [2,] 1 -0.5
Group: | Linear Algebra |
See also: | ' trans |