First commit
[epclust.git] / pkg / man / computeSynchrones.Rd
CommitLineData
b7cd987d
BA
1% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/clustering.R
3\name{computeSynchrones}
4\alias{computeSynchrones}
5\title{computeSynchrones}
6\usage{
7computeSynchrones(medoids, getRefSeries, nb_ref_curves, nb_series_per_chunk,
8 ncores_clust = 1, verbose = FALSE, parll = TRUE)
9}
10\arguments{
11\item{medoids}{big.matrix of medoids (curves of same length as initial series)}
12
13\item{getRefSeries}{Function to retrieve initial series (e.g. in stage 2 after series
14have been replaced by stage-1 medoids)}
15
16\item{nb_ref_curves}{How many reference series? (This number is known at this stage)}
17
18\item{nb_series_per_chunk}{(~Maximum) number of series in each group, inside a task}
19
20\item{ncores_clust}{"OpenMP" number of parallel clusterings in one task}
21
22\item{verbose}{Level of verbosity (0/FALSE for nothing or 1/TRUE for all; devel stage)}
23
24\item{parll}{TRUE to fully parallelize; otherwise run sequentially (debug, comparison)}
25}
26\value{
27A big.matrix of size K1 x L where L = data_length
28}
29\description{
30Compute the synchrones curves (sum of clusters elements) from a matrix of medoids,
31using L2 distances.
32}