fm.sparse_get_singletons {Rfmtool} | R Documentation |
Get singletons of sparse fuzzy measure
Description
Export the internal arrays of the sparse capacity as arrays of singletons, pairs and tuples.
Usage
fm.sparse_get_singletons(envsp=NULL)
Arguments
envsp |
Structure required for sparse representation which stores the relevant values (k-tuples). It is obtained from fm.PrepareSparseFM(n). |
Value
output |
The output is the numbers of pairs and tuples. |
Author(s)
Gleb Beliakov, Andrei Kelarev, Quan Vu, Daniela L. Calderon, Deakin University
Examples
n <- 3
envsp <- fm.PrepareSparseFM(n)
envsp <- fm.add_singletons_sparse(c(0, 0.3, 0.5),envsp)
singletons <- fm.sparse_get_singletons(envsp)
singletons
envsp <- fm.FreeSparseFM(envsp)
[Package Rfmtool version 5.0.4 Index]