Ejemplo n.º 1
0
 public static MathObject Substitute(this MathObject obj, MathObject a, int b) =>
 obj.Substitute(a, new Integer(b));
Ejemplo n.º 2
0
 public static MathObject Substitute(this MathObject obj, MathObject a, double b) =>
 obj.Substitute(a, new DoubleFloat(b));
Ejemplo n.º 3
0
 public static MathObject SubstituteEq(this MathObject obj, Equation eq) =>
 obj.Substitute(eq.a, eq.b);