Documentation of 'flanagan.integration.RungeKutta' Java class
RungeKutta
flanagan.integration

Class RungeKutta



  • public class RungeKutta
    extends java.lang.Object
    • Constructor Detail

      • RungeKutta

        public RungeKutta()
    • Method Detail

      • setInitialValueOfX

        public void setInitialValueOfX(double x0)
      • setFinalValueOfX

        public void setFinalValueOfX(double xn)
      • setInitialValueOfY

        public void setInitialValueOfY(double y0)
      • setInitialValueOfY

        public void setInitialValueOfY(double[] yy0)
      • setInitialValuesOfY

        public void setInitialValuesOfY(double y0)
      • setInitialValuesOfY

        public void setInitialValuesOfY(double[] yy0)
      • setStepSize

        public void setStepSize(double step)
      • setToleranceScalingFactor

        public void setToleranceScalingFactor(double relTol)
      • setToleranceAdditionFactor

        public void setToleranceAdditionFactor(double absTol)
      • setMaximumIterations

        public void setMaximumIterations(int maxIter)
      • getNumberOfIterations

        public int getNumberOfIterations()
      • resetNstepsMultiplier

        public static void resetNstepsMultiplier(int multiplier)
      • fourthOrder

        public static double fourthOrder(DerivFunction g,
                                         double x0,
                                         double y0,
                                         double xn,
                                         double h)
      • fourthOrder

        public static double[] fourthOrder(DerivnFunction g,
                                           double x0,
                                           double[] y0,
                                           double xn,
                                           double h)
      • cashKarp

        public static double cashKarp(DerivFunction g,
                                      double x0,
                                      double y0,
                                      double xn,
                                      double h,
                                      double absTol,
                                      double relTol,
                                      int maxIter)
      • cashKarp

        public static double cashKarp(DerivFunction g,
                                      double x0,
                                      double y0,
                                      double xn,
                                      double h,
                                      double absTol,
                                      double relTol)
      • cashKarp

        public static double[] cashKarp(DerivnFunction g,
                                        double x0,
                                        double[] y0,
                                        double xn,
                                        double h,
                                        double absTol,
                                        double relTol,
                                        int maxIter)
      • cashKarp

        public static double[] cashKarp(DerivnFunction g,
                                        double x0,
                                        double[] y0,
                                        double xn,
                                        double h,
                                        double absTol,
                                        double relTol)
      • fehlberg

        public static double fehlberg(DerivFunction g,
                                      double x0,
                                      double y0,
                                      double xn,
                                      double h,
                                      double absTol,
                                      double relTol,
                                      int maxIter)
      • fehlberg

        public static double fehlberg(DerivFunction g,
                                      double x0,
                                      double y0,
                                      double xn,
                                      double h,
                                      double absTol,
                                      double relTol)
      • fehlberg

        public static double[] fehlberg(DerivnFunction g,
                                        double x0,
                                        double[] y0,
                                        double xn,
                                        double h,
                                        double absTol,
                                        double relTol,
                                        int maxIter)
      • fehlberg

        public static double[] fehlberg(DerivnFunction g,
                                        double x0,
                                        double[] y0,
                                        double xn,
                                        double h,
                                        double absTol,
                                        double relTol)

DataMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.