Package org.jmathml.ASTFunction

Examples of org.jmathml.ASTFunction.ASTMiscellaneousFunction


      return cn;
    }
    if (isFunction(mathToParse.trim())){
      ASTNode fn = ASTFunction.createFunctionNode(ASTFunction.getFunctionTypeForName(getCandidateFunctionName(mathToParse)));
      if(fn.getType().equals(ASTFunctionType.MISCELLANEOUS)){
        fn = new ASTMiscellaneousFunction(getCandidateFunctionName(mathToParse));
      }
      toAdd.addChildNode(fn);
      String fnContents=mathToParse.substring(mathToParse.indexOf('(')+1, mathToParse.lastIndexOf(')'));
      return parseString(tidyUp(fnContents), fn)
    }
View Full Code Here

TOP

Related Classes of org.jmathml.ASTFunction.ASTMiscellaneousFunction

Copyright © 2018 www.massapicom. 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.