Package algs91

Class XGaussJordanElimination

java.lang.Object
algs91.XGaussJordanElimination

public class XGaussJordanElimination extends Object
  • Field Summary Link icon

    Fields
    Modifier and Type
    Field
    Description
    private final double[][]
     
    private static final double
     
    private final int
     
  • Constructor Summary Link icon

    Constructors
    Constructor
    Description
    XGaussJordanElimination(double[][] A, double[] b)
     
  • Method Summary Link icon

    Modifier and Type
    Method
    Description
    private boolean
    check(double[][] A, double[] b)
     
    double[]
     
    boolean
     
    static void
    main(String[] args)
     
    private void
    pivot(int p, int q)
     
    double[]
     
    private void
     
    private void
     
    private void
    swap(int row1, int row2)
     
    static void
    test(double[][] A, double[] b)
     
    static void
     
    static void
     
    static void
     
    static void
     
    static void
     
    static void
     

    Methods inherited from class java.lang.Object Link icon

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details Link icon

  • Constructor Details Link icon

  • Method Details Link icon

    • solve Link icon

      private void solve()
    • swap Link icon

      private void swap(int row1, int row2)
    • pivot Link icon

      private void pivot(int p, int q)
    • primal Link icon

      public double[] primal()
    • dual Link icon

      public double[] dual()
    • isFeasible Link icon

      public boolean isFeasible()
    • show Link icon

      private void show()
    • check Link icon

      private boolean check(double[][] A, double[] b)
    • test Link icon

      public static void test(double[][] A, double[] b)
    • test1 Link icon

      public static void test1()
    • test2 Link icon

      public static void test2()
    • test3 Link icon

      public static void test3()
    • test4 Link icon

      public static void test4()
    • test5 Link icon

      public static void test5()
    • test6 Link icon

      public static void test6()
    • main Link icon

      public static void main(String[] args)