queso-0.53.0
|
Go to the source code of this file.
Macros | |
#define | ANN_RAND random |
#define | ANN_SRAND srandom |
#define | ANN_RAND_MAX 2147483647UL |
Functions | |
void | annUniformPts (ANNpointArray pa, int n, int dim) |
void | annGaussPts (ANNpointArray pa, int n, int dim, double std_dev) |
void | annCoGaussPts (ANNpointArray pa, int n, int dim, double correlation) |
void | annLaplacePts (ANNpointArray pa, int n, int dim) |
void | annCoLaplacePts (ANNpointArray pa, int n, int dim, double correlation) |
void | annClusGaussPts (ANNpointArray pa, int n, int dim, int n_clus, ANNbool new_clust, double std_dev) |
void | annClusOrthFlats (ANNpointArray pa, int n, int dim, int n_clus, ANNbool new_clust, double std_dev, int max_dim) |
void | annClusEllipsoids (ANNpointArray pa, int n, int dim, int n_clus, ANNbool new_clust, double std_dev_small, double std_dev_lo, double std_dev_hi, int max_dim) |
void | annPlanted (ANNpointArray pa, int n, int dim, ANNpointArray src, int n_src, double std_dev) |
Variables | |
int | annIdum |
void annClusEllipsoids | ( | ANNpointArray | pa, |
int | n, | ||
int | dim, | ||
int | n_clus, | ||
ANNbool | new_clust, | ||
double | std_dev_small, | ||
double | std_dev_lo, | ||
double | std_dev_hi, | ||
int | max_dim | ||
) |
Definition at line 503 of file rand.cpp.
References annAllocPts(), annDeallocPts(), annRan0(), annRanInt(), annRanUnif(), dim, genGauss(), and std_dev.
Referenced by generatePts().
void annClusGaussPts | ( | ANNpointArray | pa, |
int | n, | ||
int | dim, | ||
int | n_clus, | ||
ANNbool | new_clust, | ||
double | std_dev | ||
) |
Definition at line 314 of file rand.cpp.
References annAllocPts(), annDeallocPts(), annRanGauss(), annRanInt(), annRanUnif(), and dim.
Referenced by generatePts().
void annClusOrthFlats | ( | ANNpointArray | pa, |
int | n, | ||
int | dim, | ||
int | n_clus, | ||
ANNbool | new_clust, | ||
double | std_dev, | ||
int | max_dim | ||
) |
Definition at line 408 of file rand.cpp.
References annAllocPts(), annDeallocPts(), annRan0(), annRanInt(), annRanUnif(), CO_FLAG, dim, and genOrthFlat().
Referenced by generatePts().
void annCoGaussPts | ( | ANNpointArray | pa, |
int | n, | ||
int | dim, | ||
double | correlation | ||
) |
Definition at line 250 of file rand.cpp.
References annRanGauss(), and dim.
Referenced by generatePts().
void annCoLaplacePts | ( | ANNpointArray | pa, |
int | n, | ||
int | dim, | ||
double | correlation | ||
) |
Definition at line 273 of file rand.cpp.
References annRan0(), annRanLaplace(), and dim.
Referenced by generatePts().
void annGaussPts | ( | ANNpointArray | pa, |
int | n, | ||
int | dim, | ||
double | std_dev | ||
) |
Definition at line 214 of file rand.cpp.
References annRanGauss(), dim, and std_dev.
Referenced by generatePts().
void annLaplacePts | ( | ANNpointArray | pa, |
int | n, | ||
int | dim | ||
) |
Definition at line 232 of file rand.cpp.
References annRanLaplace(), and dim.
Referenced by generatePts().
void annPlanted | ( | ANNpointArray | pa, |
int | n, | ||
int | dim, | ||
ANNpointArray | src, | ||
int | n_src, | ||
double | std_dev | ||
) |
Definition at line 580 of file rand.cpp.
References annRanGauss(), annRanInt(), and dim.
Referenced by generatePts().
void annUniformPts | ( | ANNpointArray | pa, |
int | n, | ||
int | dim | ||
) |
Definition at line 196 of file rand.cpp.
References annRanUnif(), and dim.
Referenced by generatePts().
int annIdum |
Definition at line 42 of file rand.cpp.
Referenced by annRan0(), generatePts(), initGlobals(), and main().