summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-jade/package.py
blob: 3047b0916d8a400017342d8dbedfe87fa7636bbc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class RJade(RPackage):
    """Blind Source Separation Methods Based on Joint Diagonalization and Some
    BSS Performance Criteria.

    Cardoso's JADE algorithm as well as his functions for joint diagonalization
    are ported to R. Also several other blind source separation (BSS) methods,
    like AMUSE and SOBI, and some criteria for performance evaluation of BSS
    algorithms, are given. The package is described in Miettinen, Nordhausen
    and Taskinen (2017) <doi:10.18637/jss.v076.i02>."""

    cran = "JADE"

    version("2.0-3", sha256="56d68a993fa16fc6dec758c843960eee840814c4ca2271e97681a9d2b9e242ba")

    depends_on("r-clue", type=("build", "run"))