コード例 #1
0
 public void IdenMatrix2()
 {
     Assert.AreEqual(TS.CreateIdentityMatrix(3), TS.CreateMatrix(new int[, ]
     {
         { 1, 0, 0 },
         { 0, 1, 0 },
         { 0, 0, 1 }
     }));
 }
コード例 #2
0
 static TS CreateMatrix(int size)
 => TS.CreateMatrix(size, size, (x, y) => (x + y));
コード例 #3
0
 public void IdenMatrix1()
 {
     Assert.AreEqual(TS.CreateIdentityMatrix(1), TS.CreateMatrix(new int[, ] {
         { 1 }
     }));
 }