Uses of Interface
fhm.edu.fem.calc.objects.MathObject

Packages that use MathObject
fhm.edu.fem.calc Provides all classes executing the main calculations along with the main FEMManager class. 
fhm.edu.fem.calc.objects Provides all objects used in the calculations along with the static functions used for integral calculation. 
fhm.edu.fem.calc.objects.matrix Provides all Matrix related classes. 
 

Uses of MathObject in fhm.edu.fem.calc
 

Methods in fhm.edu.fem.calc that return MathObject
static MathObject FEMGaussQuadrature.calcDoubleIntegration(double a, double b, double c, double d, java.lang.reflect.Method h1, java.lang.reflect.Method h2, java.lang.reflect.Method q, int z1, int z2, Vector ax, Vector hx, Vector ay, Vector hy)
          Calculate the Gauss-Quadrature to solve an integral
static MathObject FEMGaussQuadrature.calcIntegration(double a, double b, java.lang.reflect.Method h1, java.lang.reflect.Method h2, java.lang.reflect.Method q, int z1, int z2, Vector ax, Vector hx, Vector ay, Vector hy, int figure)
          Calculate the Gauss-Quadrature to solve an integral
static MathObject FEMGaussQuadrature.calcSingleIntegration(double a, double b, java.lang.reflect.Method h1, java.lang.reflect.Method h2, java.lang.reflect.Method q, int z1, int z2, Vector ay, Vector hy)
          Calculate one single integral via the gauss quadrature
 

Uses of MathObject in fhm.edu.fem.calc.objects
 

Classes in fhm.edu.fem.calc.objects that implement MathObject
 class Vector
          Class Description: This class represents a vector.
 

Uses of MathObject in fhm.edu.fem.calc.objects.matrix
 

Subinterfaces of MathObject in fhm.edu.fem.calc.objects.matrix
 interface Matrix
          Class Description: The interface defining a matrix class
 

Classes in fhm.edu.fem.calc.objects.matrix that implement MathObject
 class MatrixHull
          Class Description: HullMatrix extends the basic matrix.
 class MatrixHullChain
          Class Description: Test implementation of a Version of the Hull Matrix which is faster and does not have the "small" speed problems of the original MatrixHull class.
 class MatrixStandard
          Class Description: This class represents the matrix (we start at index 1 not 0 for both the rows and the columns)