X-Git-Url: https://git.auder.net/?p=epclust.git;a=blobdiff_plain;f=pkg%2Fman%2FcomputeSynchrones.Rd;fp=pkg%2Fman%2FcomputeSynchrones.Rd;h=7cdbb088ed40cd9e1496f42eb8247effd92cef4f;hp=0000000000000000000000000000000000000000;hb=e906736ea27105237e84c904dce6170353726292;hpb=57f337af19cd6251815bb1ff2d62f4c58e8b6078 diff --git a/pkg/man/computeSynchrones.Rd b/pkg/man/computeSynchrones.Rd new file mode 100644 index 0000000..7cdbb08 --- /dev/null +++ b/pkg/man/computeSynchrones.Rd @@ -0,0 +1,32 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/clustering.R +\name{computeSynchrones} +\alias{computeSynchrones} +\title{computeSynchrones} +\usage{ +computeSynchrones(medoids, getRefSeries, nb_ref_curves, nb_series_per_chunk, + ncores_clust = 1, verbose = FALSE, parll = TRUE) +} +\arguments{ +\item{medoids}{big.matrix of medoids (curves of same length as initial series)} + +\item{getRefSeries}{Function to retrieve initial series (e.g. in stage 2 after series +have been replaced by stage-1 medoids)} + +\item{nb_ref_curves}{How many reference series? (This number is known at this stage)} + +\item{nb_series_per_chunk}{(~Maximum) number of series in each group, inside a task} + +\item{ncores_clust}{"OpenMP" number of parallel clusterings in one task} + +\item{verbose}{Level of verbosity (0/FALSE for nothing or 1/TRUE for all; devel stage)} + +\item{parll}{TRUE to fully parallelize; otherwise run sequentially (debug, comparison)} +} +\value{ +A big.matrix of size K1 x L where L = data_length +} +\description{ +Compute the synchrones curves (sum of clusters elements) from a matrix of medoids, +using L2 distances. +}