17 void maxHeapify (
double * vals,
int n,
int *indexes,
int root);
18 void maxHeapify (
float * vals,
int n,
int *indexes,
int root);
19 void maxHeapify (
int * vals,
int n,
int *indexes,
int root);
20 void heapSort (
int n,
double *val,
int *indexes,
int order = 0);
21 void heapSort (
int n,
float *val,
int *indexes,
int order = 0);
22 void heapSort (
int n,
int *val,
int *indexes,
int order = 0);
24 void medium_filtering(
int n,
double *data,
int win,
double nodata);
25 void medium_filtering(
int n,
float *data,
int win,
float nodata);
26 float median_of_medians(
int n,
float *data,
int rank);
27 float median_use_histogram(
int n,
float *data,
int start_count = 0,
int total_size = 0);
Generated for ISCE3.0 by
1.8.5.