コード例 #1
0
 public Entity Pow(Entity n) => Powf.Hang(this, n);
コード例 #2
0
 public static Entity Sqr(Entity a) => Powf.Hang(a, 2);
コード例 #3
0
 public static Entity Pow(Entity base_, Entity power) => Powf.Hang(base_, power);
コード例 #4
0
 public static Entity Sqrt(Entity a) => Powf.Hang(a, Number.CreateRational(1, 2));
コード例 #5
0
ファイル: MathS.cs プロジェクト: datiezhu/AngouriMath
 public static Entity Sqrt(Entity a) => Powf.Hang(a, 0.5);