Difference between revisions of "Invert"

m (Removed Cat D)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 
[[Category:Matrix Functions]]
 
[[Category:Matrix Functions]]
[[Category:Doc Status D]] <!-- For Lumina use, do not change -->
 
 
= Invert( c, i, j ) =
 
  
 +
== 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.
 
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 =
+
== Example ==
 
+
:<code>Variable MatrixA :=</code>
:Variable MatrixA :=
+
:{| class="wikitable"
:j [[image:DownIndex.jpg]], i [[image:RightIndex.jpg]]
+
! !! colspan=3| i &#9654;
:{| border="1" style="width:15em"
+
|-
! !! 1 !! 2 !! 3
+
! j &#9660; !! 1 !! 2 !! 3
 
|-
 
|-
! a || 4 || 1 || 2
+
! a  
 +
| 4 || 1 || 2
 
|-
 
|-
! b || 2 || 5 || 3
+
! b  
 +
| 2 || 5 || 3
 
|-
 
|-
! c || 3 || 2 || 7
+
! c  
 +
| 3 || 2 || 7
 
|}
 
|}
  
:Invert(MatrixA,i,j) &rarr;
+
:<code>Invert(MatrixA, i, j) &rarr;</code>
:j [[image:DownIndex.jpg]], i [[image:RightIndex.jpg]]
+
:{| class="wikitable"
:{| border="1"  style="width:15em"
+
! !! colspan=3| i &#9654;
! !! 1 !! 2 !! 3
 
 
|-
 
|-
! a || 0.326 || -0.034 || -0.079
+
! j &#9660; !! 1 !! 2 !! 3
 
|-
 
|-
! b || -0.056 || 0.247 || -0.090
+
! a
 +
| 0.326 || -0.034 || -0.079
 
|-
 
|-
! c || -0.124 || -0.056 || 0.202
+
! b
 +
| -0.056 || 0.247 || -0.090
 +
|-
 +
! c  
 +
| -0.124 || -0.056 || 0.202
 
|}
 
|}
  
= See Also =
+
== See Also ==
 
+
* [[Matrix functions]]
* [[:Category:Matrix Functions|Matrix Functions]]
+
* [[:Category:Matrix Functions]]
 
* [[SingularValueDecomp]]
 
* [[SingularValueDecomp]]
 
* [[Transpose]]
 
* [[Transpose]]
 
* [[MatrixMultiply]]
 
* [[MatrixMultiply]]

Latest revision as of 01:42, 27 January 2016


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 :=
i ▶
j ▼ 1 2 3
a 4 1 2
b 2 5 3
c 3 2 7
Invert(MatrixA, i, j) →
i ▶
j ▼ 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.