|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface Analyser
Similar to a VectorFunction, an analyser transforms input data to
output data. It is meant for functions defined on a grid, or on measured
data points.
VectorFunction| Method Summary | |
|---|---|
long[] |
functionCalls(VectorG[] in)
Returns an estimate of the number of mathematical functions called. |
Object[] |
metadata(VectorG[] in,
VectorG[] proc,
VectorG[] visual)
After processing, the analyser may be able to provide some metadata. |
VectorG[] |
process(VectorG[] in)
Takes a set of input data and transforms it into a set of output data. |
void |
reset()
Resets the analyser to re-use it with a different data set. |
double |
significance(double check,
VectorG[] in,
VectorG[] processed,
VectorG[] visual)
If the analysier can produce something like a significance of a value, this is returned here. |
VectorG[] |
visualize(VectorG[] in,
VectorG[] processed)
Further transforms the processed vector into some visualizable vector. |
| Method Detail |
|---|
long[] functionCalls(VectorG[] in)
length - Length of data set.
VectorG[] process(VectorG[] in)
in - The measured data.
VectorG[] visualize(VectorG[] in,
VectorG[] processed)
in - The measured data.processed - The processed data from process(vec_math.VectorG[]).
Object[] metadata(VectorG[] in,
VectorG[] proc,
VectorG[] visual)
VectorG, further processing
might be possible.
in - The original data, before process.proc - The processed data from process(vec_math.VectorG[]).visual - The visualized data from visualize(vec_math.VectorG[], vec_math.VectorG[]).
double significance(double check,
VectorG[] in,
VectorG[] processed,
VectorG[] visual)
check - The value whose significance is to be probed.in - The original data, before process.processed - The processed data from process(vec_math.VectorG[]).visual - The visualized data from visualize(vec_math.VectorG[], vec_math.VectorG[]).
void reset()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||