Exemplo n.º 1
0
 public classOnp(string args)
 {
     this.x         = double.NaN;
     this.status    = "ok";
     this.operatory = new classOperators();
     this.inflix    = checkInput(args);
 }
Exemplo n.º 2
0
 public classOnp(string formula, double x)
 {
     this.x         = x;
     this.x_max     = double.NaN;
     this.status    = "ok";
     this.operatory = new classOperators();
     this.inflix    = checkInput(formula);
 }
Exemplo n.º 3
0
 public classOnp(string formula, double from, double to, double n)
 {
     this.x_min     = from;
     this.x_max     = to;
     this.n         = n;
     this.status    = "ok";
     this.operatory = new classOperators();
     this.inflix    = checkInput(formula);
 }