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