Displaying 2 results from an estimated 2 matches for "nbtime".
Did you mean:
btime
2014 Mar 19
1
Memcheck: Invalid read of size 4
...)
...
==27283== by 0x10C5DE4F: kml1 (kml.c:151)
...
==27283== 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 < *nbCluster...
2009 Sep 09
1
Package that does not work until I re write the exactly the same code
...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,
print.sub = FALSE, col = "black", type.mean = "n")
if (length(startingCond) == 1) {
if (star...