diff --git a/src/clustering.jl b/src/clustering.jl index 1e920b4..d475ec2 100644 --- a/src/clustering.jl +++ b/src/clustering.jl @@ -1 +1,17 @@ +""" + cepsclustering(cc::AbstractMatrix, k::Integer) + +Perform clustering of cepstral coefficients using k-medoids algorithm. + +!!! note + This function can be used only after importing the `Clustering` package. + +# Arguments +- `cc::AbstractMatrix`: A matrix of cepstral coefficients. +- `k::Integer`: Maximum number of clusters to be examined (to find the optimal number of clusters). + +# Returns +- A vector of vectors, where each vector contains the indices of the cepstral coefficients in \ + the corresponding cluster. +""" function cepsclustering end