Open source Very Long Baseline Interferometry
OpenVLBI
|
Macros | |
#define | dsp_stats_min(buf, len) |
Gets the minimum value of the input stream. More... | |
#define | dsp_stats_max(buf, len) |
Gets the maximum value of the input stream. More... | |
#define | dsp_stats_mid(buf, len) |
Gets the middle value of the input stream. More... | |
#define | dsp_stats_minimum_index(buf, len) |
Gets minimum value's position into the buffer. More... | |
#define | dsp_stats_maximum_index(buf, len) |
Gets maximum value's position into the buffer. More... | |
#define | dsp_stats_mean(buf, len) |
A mean calculator. More... | |
#define | dsp_stats_stddev(buf, len) |
Standard deviation of the inut stream. More... | |
#define | dsp_stats_val_count(buf, len, val) |
Counts value occurrences into stream. More... | |
#define | dsp_stats_val_sum(buf, len) |
Cumulative sum of all the values on the stream. More... | |
#define | dsp_stats_range_count(buf, len, lo, hi) |
Counts value ranging occurrences into stream. More... | |
#define | dsp_stats_compare(in1, in2, len) |
Compare two buffers. More... | |
Functions | |
DLL_EXPORT double * | dsp_stats_histogram (dsp_stream_p stream, int size) |
Histogram of the inut stream. More... | |
#define dsp_stats_compare | ( | in1, | |
in2, | |||
len | |||
) |
in1 | the first input buffer |
in2 | the second input buffer |
len | the length in elements of the buffer. |
#define dsp_stats_max | ( | buf, | |
len | |||
) |
buf | the input buffer |
len | the length in elements of the buffer. |
#define dsp_stats_maximum_index | ( | buf, | |
len | |||
) |
buf | the input buffer |
len | the length in elements of the buffer. |
#define dsp_stats_mean | ( | buf, | |
len | |||
) |
buf | the input buffer |
len | the length in elements of the buffer. |
#define dsp_stats_mid | ( | buf, | |
len | |||
) |
buf | the input buffer |
len | the length in elements of the buffer. |
#define dsp_stats_min | ( | buf, | |
len | |||
) |
buf | the input buffer |
len | the length in elements of the buffer. |
#define dsp_stats_minimum_index | ( | buf, | |
len | |||
) |
buf | the input buffer |
len | the length in elements of the buffer. |
#define dsp_stats_range_count | ( | buf, | |
len, | |||
lo, | |||
hi | |||
) |
buf | the input buffer |
len | the length in elements of the buffer. |
lo | the bottom margin value. |
hi | the upper margin value. |
#define dsp_stats_stddev | ( | buf, | |
len | |||
) |
buf | the inout buffer |
len | the length of the buffer |
#define dsp_stats_val_count | ( | buf, | |
len, | |||
val | |||
) |
buf | the input buffer |
len | the length in elements of the buffer. |
val | the value to count. |
#define dsp_stats_val_sum | ( | buf, | |
len | |||
) |
buf | the input buffer |
len | the length in elements of the buffer. |
DLL_EXPORT double* dsp_stats_histogram | ( | dsp_stream_p | stream, |
int | size | ||
) |
stream | the stream on which execute |
size | the length of the median. |