public interface RealVectorChangingVisitor
Modifier and Type | Method and Description |
---|---|
double |
end()
End visiting a vector.
|
void |
start(int dimension,
int start,
int end)
Start visiting a vector.
|
double |
visit(int index,
double value)
Visit one entry of the vector.
|
void start(int dimension, int start, int end)
dimension
- the size of the vectorstart
- the index of the first entry to be visitedend
- the index of the last entry to be visited (inclusive)double visit(int index, double value)
index
- the index of the entry being visitedvalue
- the value of the entry being visiteddouble end()
Copyright © 2020 CNES. All rights reserved.