Displaying 2 results from an estimated 2 matches for "convergencetim".
Did you mean:
convergencetime
2014 Mar 19
1
Memcheck: Invalid read of size 4
...at 0x10C5DF90: kml1 (kml.c:198)
--- 8< ----------------
Here is the function kml1 from the file kml.c (I add some comments to tag the lines 151, 183 and 198)
--- 8< ----------------
void kml1(double *traj, int *nbInd, int *nbTime, int *nbClusters, int *maxIt, int *clusterAffectation1, int *convergenceTime){
int i=0,iter=0;
int *clusterAffectation2=malloc(*nbInd * sizeof(int)); // lines 151
double *trajMean=malloc(*nbClusters * *nbTime * sizeof(double));
for(i = 0; i < *nbClusters * *nbTime; i++){trajMean[i] = 0.0;};
for(i = 0; i < *nbInd; i++){c...
2009 Sep 09
1
Package that does not work until I re write the exactly the same code
...trajMinSize = 2, print.cal = FALSE, print.traj = FALSE,
imputationMethod = "copyMean", distance, power = 2, centerMethod =
meanNA,
startingCond = "allMethods", distanceStartingCond = "euclidean",
...)
{
nbIdFull <- nrow(Object["traj"])
convergenceTime <- 0
noNA <- selectSupTrajMinSize(Object, trajMinSize)
trajNoNA <- Object["traj"][noNA, ]
nbTime <- length(Object["time"])
nbId <- nrow(trajNoNA)
saveCld <- 0
scr <- plotAll(Object, print.cal = print.cal, print.traj = print.traj,...