Your preferences have been saved!
» Science Parser - import java.awt.*; import java.applet.*; import graph.*; public class parser extends Applet {     public static void main( String arg[] ) {         int l = arg.length;         double d;         if( l < 1 || l > 4 ) {           System.out.println(            "Usage: java parser \"function\" [x value] [y value] [z value]");... 16 Feb 12 » Math function and bar - import java.awt.*; import java.awt.event.*; import java.applet.Applet; import java.util.StringTokenizer; import edu.hws.jcm.draw.*; import edu.hws.jcm.data.*; import edu.hws.jcm.functions.*; import edu.hws.jcm.awt.*; public class RiemannSums extends GenericGraphApplet {    // Declare some private variables that are created in one method in... 16 Feb 12 » Calculate the arithmetic function - import java.awt.*; import java.applet.Applet; import edu.hws.jcm.data.*;  // Packages that define some JCM classes. import edu.hws.jcm.awt.*; public class ArithmeticApplet extends Applet {    /* The makeLabel() routine is just a small utility routine       that makes a label containing a given string.  Labels made with       this routine are used in the little boxes on the left side       of the above applet. */    Label makeLabel(String str) {... 16 Feb 12 » Draw math function on the coordinate - import java.awt.*; import edu.hws.jcm.data.*; import edu.hws.jcm.draw.*; import edu.hws.jcm.awt.*; public class GraphApplet2 extends java.applet.Applet {       public static void main(String[] a){          javax.swing.JFrame f = new javax.swing.JFrame();          java.applet.Applet app = new GraphApplet2();          app.init();          ... 16 Feb 12 » Math function graph 1 - import java.awt.*; import edu.hws.jcm.data.*; import edu.hws.jcm.draw.*; import edu.hws.jcm.awt.*; public class GraphApplet3 extends java.applet.Applet {       public static void main(String[] a){          javax.swing.JFrame f = new javax.swing.JFrame();          java.applet.Applet app = new GraphApplet3();          app.init();          ... 16 Feb 12 » Draw the function - import java.awt.*; import java.applet.Applet; import java.util.*; import edu.hws.jcm.draw.*; import edu.hws.jcm.data.*; import edu.hws.jcm.functions.*; import edu.hws.jcm.awt.*; public class MultiGraph extends GenericGraphApplet {    private Vector sliders;  // Elements of this vector are the VariableSlider                             //   objects that represent the parameter values.... 16 Feb 12 » Function Composition - import java.awt.*; import java.awt.event.*; import java.util.StringTokenizer; import java.applet.Applet; import edu.hws.jcm.data.*; import edu.hws.jcm.draw.*; import edu.hws.jcm.awt.*; import edu.hws.jcm.functions.*; public class FunctionComposition extends GenericGraphApplet implements ActionListener, ItemListener {    Button zoomInButton, zoomOutButton, restoreButton, equalizeButton;  // Control buttons for... 16 Feb 12 » Derivatives - import java.awt.*; import java.awt.event.*; import java.applet.Applet; import java.util.StringTokenizer; import edu.hws.jcm.draw.*; import edu.hws.jcm.data.*; import edu.hws.jcm.functions.*; import edu.hws.jcm.awt.*; public class Derivatives extends GenericGraphApplet {    private String functionName;  // name of the fuction beging graphed, 'f' by default; used in labels etc... 16 Feb 12 » Display the graph of a single function of one variable - import java.awt.*; import java.applet.Applet; import java.util.StringTokenizer; import edu.hws.jcm.draw.*; import edu.hws.jcm.data.*; import edu.hws.jcm.functions.*; import edu.hws.jcm.awt.*; public class SimpleGraph extends GenericGraphApplet {    // Declare some private variables that are created in one method in    // this class and used in a second method.... 16 Feb 12 » Contouring - import java.awt.*; import java.applet.*; import java.net.URL; import java.util.*; import graph.*; public class example6 extends Applet {       LoadData dynamic;       Contour graph;       Label title;       Axis    xaxis;... 16 Feb 12