Difference between revisions of "Manuals/calci/IDENTITY"
Jump to navigation
Jump to search
(3 intermediate revisions by 2 users not shown) | |||
Line 32: | Line 32: | ||
==Examples== | ==Examples== | ||
− | *1.MATRIX("identity") | + | *1.MATRIX("identity") = 1 |
+ | *2.MATRIX("identity",3) | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
Line 41: | Line 42: | ||
| 0|| 0 || 1 | | 0|| 0 || 1 | ||
|} | |} | ||
− | * | + | *3.MATRIX("identity",6) |
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
Line 56: | Line 57: | ||
| 0 || 0 || 0 || 0 || 0 || 1 | | 0 || 0 || 0 || 0 || 0 || 1 | ||
|} | |} | ||
+ | |||
+ | ==Related Videos== | ||
+ | |||
+ | {{#ev:youtube|3cnIa0fYJkY|280|center|Identity Matrix}} | ||
+ | |||
+ | ==See Also== | ||
+ | *[[Manuals/calci/HADAMARD| HADAMARD]] | ||
+ | *[[Manuals/calci/HESSENBERG| HESSENBERG]] | ||
+ | *[[Manuals/calci/CIRCULANT| CIRCULANT]] | ||
+ | *[[Manuals/calci/HANKEL| HANKEL]] | ||
+ | |||
+ | ==References== | ||
+ | *[http://en.wikipedia.org/wiki/Identity_matrix Identity Matrix] |
Latest revision as of 01:18, 26 October 2015
MATRIX("IDENTITY",order)
- is the order of the Identity matrix.
Description
- This function gives the identity matrix of order 3.
- The matrix is called identity matrix if a square matrix which has a 1 for each element on the main diagonal and 0 for all other elements.
- Identity matrix is denoted by I_n or simply by I.
- Identity matrix is also called as Unit matrix.
- The identity matrix is the identity for matrix multiplication.
- The form of identity matrices are
.......
Examples
- 1.MATRIX("identity") = 1
- 2.MATRIX("identity",3)
1 | 0 | 0 |
0 | 1 | 0 |
0 | 0 | 1 |
- 3.MATRIX("identity",6)
1 | 0 | 0 | 0 | 0 | 0 |
0 | 1 | 0 | 0 | 0 | 0 |
0 | 0 | 1 | 0 | 0 | 0 |
0 | 0 | 0 | 1 | 0 | 0 |
0 | 0 | 0 | 0 | 1 | 0 |
0 | 0 | 0 | 0 | 0 | 1 |