Esempio n. 1
0
 public static bool IsReal(this Matrix m)
 {
     return m.CheckAllElements(x => x.IsReal());
 }
Esempio n. 2
0
 public static bool IsPureImaginary(this Matrix m)
 {
     return m.CheckAllElements(x => x.IsPureImaginary());
 }