Exemplo n.º 1
0
 public void IdenMatrix2()
 {
     Assert.AreEqual(TS.CreateIdentityMatrix(3), TS.CreateMatrix(new int[, ]
     {
         { 1, 0, 0 },
         { 0, 1, 0 },
         { 0, 0, 1 }
     }));
 }
Exemplo n.º 2
0
 static TS CreateMatrix(int size)
 => TS.CreateMatrix(size, size, (x, y) => (x + y));
Exemplo n.º 3
0
 public void IdenMatrix1()
 {
     Assert.AreEqual(TS.CreateIdentityMatrix(1), TS.CreateMatrix(new int[, ] {
         { 1 }
     }));
 }