|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcalc.VektorOps
public class VektorOps
Collection of standard vector operations.
These operations are defined as static functions. Not so usual functions are
defined in MoreVektorOps
.
Constructor Summary | |
---|---|
VektorOps()
|
Method Summary | |
---|---|
static Vektor |
addition(Vektor a,
Vektor b)
Addition of two vectors. |
static Vektor |
addition(Vektor a,
Vektor b,
Vektor d)
Addition of three vectors. |
static Vektor |
addition(Vektor a,
Vektor b,
Vektor d,
Vektor f)
Addition of four vectors. |
static Vektor |
addition(Vektor a,
Vektor b,
Vektor d,
Vektor f,
Vektor g)
Addition of five vectors. |
static Vektor |
addition(Vektor a,
Vektor b,
Vektor d,
Vektor f,
Vektor g,
Vektor h)
Addition of six vectors. |
static Vektor |
cmulti(Vektor a,
double c)
Multiplication of a Vector and a constant. |
static Vektor |
crossproduct(Vektor a,
Vektor b)
Crossproduct of two vectors. |
static Vektor |
negative(Vektor a)
Reverses the direction of the Vector. |
static double |
scalarproduct(Vektor a,
Vektor b)
Inner product. |
static Vektor |
solvelinearCramer(Vektor A1,
Vektor A2,
Vektor A3,
Vektor b)
|
static double |
spatproduct(Vektor a,
Vektor b,
Vektor c)
Spatproduct. |
static Vektor |
subtraktion(Vektor a,
Vektor b)
Subtraction of the Vectors. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public VektorOps()
Method Detail |
---|
public static Vektor addition(Vektor a, Vektor b)
a
- Vector ab
- Vector b
public static double scalarproduct(Vektor a, Vektor b)
a
- Vector ab
- Vector b
public static Vektor crossproduct(Vektor a, Vektor b)
a
- Vector ab
- Vector b
public static double spatproduct(Vektor a, Vektor b, Vektor c)
a
- Vector ab
- Vector bc
- Vector c
public static Vektor cmulti(Vektor a, double c)
a
- Vektor ac
- Constant c
public static Vektor negative(Vektor a)
cmulti(a,-1)
.
a
- Vektor a
public static Vektor addition(Vektor a, Vektor b, Vektor d)
a
- Vector ab
- Vector bd
- Vector d
public static Vektor subtraktion(Vektor a, Vektor b)
a
- Vector ab
- Vector b
public static Vektor addition(Vektor a, Vektor b, Vektor d, Vektor f)
a
- Vector ab
- Vector bd
- Vector df
- Vector f
public static Vektor addition(Vektor a, Vektor b, Vektor d, Vektor f, Vektor g)
a
- Vector ab
- Vector bd
- Vector df
- Vector fg
- Vector g
public static Vektor addition(Vektor a, Vektor b, Vektor d, Vektor f, Vektor g, Vektor h)
a
- Vector ab
- Vector bd
- Vector df
- Vector fg
- Vector gh
- Vector h
public static Vektor solvelinearCramer(Vektor A1, Vektor A2, Vektor A3, Vektor b)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |