All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lsmp.djepExamples.RpSpeed Maven / Gradle / Ivy

Go to download

JEP is a Java library for parsing and evaluating mathematical expressions.

The newest version!
/* @author rich
 * Created on 26-Feb-2004
 */

package org.lsmp.djepExamples;
import org.nfunk.jep.*;
import org.lsmp.djep.rpe.*;
/**
 * Compares the speed of matrix operations
 * using both VectorJep or MatrixJep.
 * 

* If you have some nice complicated examples, I'd love to * hear about them to see if we can tune things up. - rich */ public class RpSpeed { static JEP j; static int num_itts = 100000; // for normal use // static int num_itts = 1000; // for use with profiler public static void main(String args[]) { long t1 = System.currentTimeMillis(); initJep(); long t2 = System.currentTimeMillis(); System.out.println("Jep initialise "+(t2-t1)); doAll(new String[0],"1*2*3+4*5*6+7*8*9"); doAll(new String[]{"x1=1","x2=2","x3=3","x4=4","x5=5","x6=6","x7=7","x8=8","x9=9"}, "x1*x2*x3+x4*x5*x6+x7*x8*x9"); doAll(new String[]{"x=0.7"},"cos(x)^2+sin(x)^2"); } public static void doAll(String eqns[],String eqn2) { System.out.print("Testing speed for <"); for(int i=0;i and <"+eqn2+">"); doJep(eqns,eqn2); doRpe(eqns,eqn2); System.out.println(); } static void initJep() { j = new JEP(); j.addStandardConstants(); j.addStandardFunctions(); j.addComplex(); j.setAllowUndeclared(true); j.setImplicitMul(true); j.setAllowAssignment(true); } static void doJep(String eqns[],String eqn2) { // System.out.println("vec init"+(t4-t3)); try { for(int i=0;i





© 2015 - 2024 Weber Informatics LLC | Privacy Policy