public class Algebra
extends java.lang.Object
Constructor and Description |
---|
Algebra() |
Modifier and Type | Method and Description |
---|---|
static double |
det22(double... m)
Approximate computation of 2x2 determinant
|
static double |
det33(double... m)
Approximate computation of 3x3 determinant
|
static double |
det44(double... m)
Approximate computation of 4x4 determinant
|
static double |
det55(double... m)
Approximate computation of 5x5 determinant
|
static double |
detnn(int n,
double... m)
Approximate computation of nxn determinant (slower than dimension-specific versions)
|
static void |
main(java.lang.String[] args) |
public static double det22(double... m)
m
- a 2x2 matrix (double precision)public static double det33(double... m)
public static double det44(double... m)
public static double det55(double... m)
public static double detnn(int n, double... m)
public static void main(java.lang.String[] args)