| Package | Description |
|---|---|
| JSci.maths |
| Modifier and Type | Method and Description |
|---|---|
Double3Vector |
Double3Vector.add(Double3Vector v)
Returns the addition of this vector and another.
|
Double3Vector |
Quaternion.imag()
Returns the imaginary part of this quaternion.
|
Double3Vector |
Double3Vector.multiply(Double3Vector v)
Returns the vector product of this vector and another (so(3) algebra).
|
Double3Vector |
Double3Vector.subtract(Double3Vector v)
Returns the subtraction of this vector by another.
|
| Modifier and Type | Method and Description |
|---|---|
Double3Vector |
Double3Vector.add(Double3Vector v)
Returns the addition of this vector and another.
|
Complex3Vector |
Complex3Vector.add(Double3Vector v)
Returns the addition of this vector and another.
|
Quaternion |
Quaternion.addImag(Double3Vector imag)
Returns the addition of this quaternion with an imaginary part.
|
Double3Vector |
Double3Vector.multiply(Double3Vector v)
Returns the vector product of this vector and another (so(3) algebra).
|
double |
Double3Vector.scalarProduct(Double3Vector v)
Returns the scalar product of this vector and another.
|
Double3Vector |
Double3Vector.subtract(Double3Vector v)
Returns the subtraction of this vector by another.
|
Complex3Vector |
Complex3Vector.subtract(Double3Vector v)
Returns the subtraction of this vector by another.
|
Quaternion |
Quaternion.subtractImag(Double3Vector imag)
Returns the subtraction of this quaternion by an imaginary part.
|
| Constructor and Description |
|---|
Quaternion(double real,
Double3Vector imag)
Constructs a quaternion.
|