|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--ru.sscc.spline.reduction.OrthogonalReduction
The implementation of an abstract space reduction consisting of an internal reduction and orthogonalization with respect to a set of vectors.
Constructor Summary | |
OrthogonalReduction(Reduction reduction)
Constructs the reduction based on user's reduction with zero capacity for the orthogonalization set. |
|
OrthogonalReduction(Reduction reduction,
int ortsCapacity)
Constructs the reduction based on user's reduction and the orthogonalization base stored in the RealVectors instance. |
|
OrthogonalReduction(Reduction reduction,
RealVectors vectors)
Constructs the reduction based on user's reduction and the set of vectors to orthogonalize to. |
Method Summary | |
void |
appendVector(RealPointer vector)
Appends a vector to the orthogonalization set. |
int |
initialDimension()
Returns the dimension of initial space of independent varibles. |
int |
reducedDimension()
Returns the dimension of reduced space of independent varibles. |
void |
reducePoint(RealPointer x,
RealPointer y)
Transforms a point coordinates from initial to reduced using affine transformation yi = si*(xi-oi). |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Constructor Detail |
public OrthogonalReduction(Reduction reduction)
reduction
- the base reductionpublic OrthogonalReduction(Reduction reduction, int ortsCapacity)
reduction
- the base reductionortsCapacity
- the initial capacity for orts to be usedpublic OrthogonalReduction(Reduction reduction, RealVectors vectors)
reduction
- the base reductionvectors
- the set of vectors for orthogonalizationMethod Detail |
public void appendVector(RealPointer vector)
vector
- the pointer to the appended vectorpublic int initialDimension()
public int reducedDimension()
public void reducePoint(RealPointer x, RealPointer y)
x
- a point in initial coordinatesy
- the point in reduced coordinates
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |