Beispiel #1
0
        static MathS()
        {
            NumberFormatInfo nfi = new NumberFormatInfo
            {
                NumberDecimalSeparator = "."
            };

            Sumf.Wakeup();
            Minusf.Wakeup();
            Mulf.Wakeup();
            Divf.Wakeup();
            Powf.Wakeup();
            Sinf.Wakeup();
            Cosf.Wakeup();
            Tanf.Wakeup();
            Cotanf.Wakeup();
            Logf.Wakeup();
            Arcsinf.Wakeup();
            Arccosf.Wakeup();
            Arctanf.Wakeup();
            Arccotanf.Wakeup();
        }
Beispiel #2
0
 public Entity Log(Entity n) => Logf.Hang(this, n);
Beispiel #3
0
 public static Entity Ln(Entity a) => Logf.Hang(e, a);
Beispiel #4
0
 public static Entity Log(Entity @base, Entity x) => Logf.Hang(@base, x);
Beispiel #5
0
 public static Entity Ln(Entity a) => Logf.Hang(a, e);
Beispiel #6
0
 public static Entity Log(Entity num, Entity base_) => Logf.Hang(num, base_);