{{indexmenu_n>999}} ====== Identity ====== ### Matrix.Identity(//n//) returns an identity matrix of size $n\times n$. If the option "Userdata" is set to true (default is false) the output is returned as a pointer rather than a table of tables (compare //[[documentation:language_reference:objects:matrix:functions:ToUserdata|Matrix.ToUserdata()]]//). ### ===== Example ===== ==== Input ==== print(Matrix.Identity(3)) ==== Result ==== { { 1 , 0 , 0 } , { 0 , 1 , 0 } , { 0 , 0 , 1 } } ===== Table of contents ===== {{indexmenu>.#1|msort}}