Examples of convertStoFunk()


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

        this.applyDeclarations(code);

        String codeWithoutDeclarations = this.getCodeWithoutDeclarations(code);
        this.calcCode = codeWithoutDeclarations.substring(5);
        Funktion f = new Funktion();
        f = f.convertStoFunk(this.calcCode);
        this.calcCode = f.wohlgeklammertLaTeX(this.calcCode, 0);
        this.calcCode = this.calcCode.replaceAll("\\(", "{\\\\left(");
        this.calcCode = this.calcCode.replaceAll("\\)", "\\\\right)}");
        this.calcCode = this.calcCode.replace("*", "\\cdot ") + "=";
       
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.