Table of Contents
Zero
Matrix.Zero(n) returns a zero 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 Matrix.ToUserdata()).
Example
Input
- Example.Quanty
print(Matrix.Zero(3))
Result
{ { 0 , 0 , 0 } , { 0 , 0 , 0 } , { 0 , 0 , 0 } }