Table of Contents
This is an old revision of the document!
Zero
Matrix.Zero(n) returns a zero matrix of size $n\times n$.
Example
Input
- Example.Quanty
print(Matrix.Zero(3))
Result
{ { 0 , 0 , 0 } , { 0 , 0 , 0 } , { 0 , 0 , 0 } }
This is an old revision of the document!
Matrix.Zero(n) returns a zero matrix of size $n\times n$.
print(Matrix.Zero(3))
{ { 0 , 0 , 0 } , { 0 , 0 , 0 } , { 0 , 0 , 0 } }