Difference between revisions of "Invert"

m (adding doc status category stub page)
Line 2: Line 2:
 
[[Category:Doc Status D]] <!-- For Lumina use, do not change -->
 
[[Category:Doc Status D]] <!-- For Lumina use, do not change -->
  
{{stub}}
+
= Invert( c, i, j ) =
 +
 
 +
Returns the inverse of matrix «c».  The two index parameters, «i» and «j» specify the indexes of «c» along which the inversion is to take place and must have the same length, implying that «c» is a square matrix.
 +
 
 +
= Example =
 +
 
 +
:Variable MatrixA :=
 +
:j [[image:DownIndex.jpg]], i [[image:RightIndex.jpg]]
 +
:{| border="1"
 +
! !! 1 !! 2 !! 3
 +
|-
 +
! a || 4 || 1 || 2
 +
|-
 +
! b || 2 || 5 || 3
 +
|-
 +
! c || 3 || 2 || 7
 +
|}
 +
 
 +
:Invert(MatrixA,i,j) &rarr;
 +
:j [[image:DownIndex.jpg]], i [[image:RightIndex.jpg]]
 +
:{| border="1"
 +
! !! 1 !! 2 !! 3
 +
|-
 +
! a || 0.326 || -0.034 || -0.079
 +
|-
 +
! b || -0.056 || 0.247 || -0.090
 +
|-
 +
! c || -0.124 || -0.056 || 0.202
 +
|}
 +
 
 +
= See Also =
 +
 
 +
* [[:Category:Matrix Functions|Matrix Functions]]
 +
* [[SingularValueDecomp]]
 +
* [[Transpose]]
 +
* [[MatrixMultiply]]

Revision as of 01:55, 28 May 2009


Invert( c, i, j )

Returns the inverse of matrix «c». The two index parameters, «i» and «j» specify the indexes of «c» along which the inversion is to take place and must have the same length, implying that «c» is a square matrix.

Example

Variable MatrixA :=
j DownIndex.jpg, i RightIndex.jpg
1 2 3
a 4 1 2
b 2 5 3
c 3 2 7
Invert(MatrixA,i,j) →
j DownIndex.jpg, i RightIndex.jpg
1 2 3
a 0.326 -0.034 -0.079
b -0.056 0.247 -0.090
c -0.124 -0.056 0.202

See Also

Comments


You are not allowed to post comments.