コード例 #1
0
ファイル: MatrixChecks.cs プロジェクト: DonDoff/Maths
 public static bool IsReal(this Matrix m)
 {
     return m.CheckAllElements(x => x.IsReal());
 }
コード例 #2
0
ファイル: MatrixChecks.cs プロジェクト: DonDoff/Maths
 public static bool IsPureImaginary(this Matrix m)
 {
     return m.CheckAllElements(x => x.IsPureImaginary());
 }