Package eas.startSetup.arrowGUI.funktionen2D

Examples of eas.startSetup.arrowGUI.funktionen2D.Funktion.eval()


            this.calcCode += "\\\\\\hline\\hline\n";

            for (double x = xMin; x <= xMax; x += (xMax - xMin + 1) / xNum) {
                this.calcCode += "$" + StaticMethods.round(x, this.roundDigits) + "$";
                for (double y = yMin; y <= yMax; y += (yMax - yMin + 1) / yNum) {
                    this.calcCode += " & $" + StaticMethods.round(f.eval(x, y), this.roundDigits) + "$";
                }
                this.calcCode += "\\\\\\hline\n";
            }
           
            this.calcCode += "\\end{tabular}}";
View Full Code Here


                this.calcCode += "\\\\\\hline\n";
            }
           
            this.calcCode += "\\end{tabular}}";
        } else {
            this.eval = f.eval(0, 0) + "";
            this.calcCode += this.eval;
        }
    }

    @Override
View Full Code Here

        for (int ix = 0; ix < anfang; ix++) {
            neuDick.add(this.aktGrph.getDicken().get(ix));
        }
       
        for (int ix = anfang; ix <= ende; ix++) {
            neuDick.add(f.eval(ix - anfang, ypsilon));
        }

        for (int ix = ende + 1; ix < this.aktGrph.getPfeilPol().nPoints(); ix++) {
            neuDick.add(this.aktGrph.getDicken().get(ix));
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.