Learn R Programming

Rfmtool (version 5.0.3)

fm.sparse_get_singletons: 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)

Value

output

The output is the numbers of pairs and tuples.

Arguments

envsp

Structure required for sparse representation which stores the relevant values (k-tuples). It is obtained from fm.PrepareSparseFM(n).

Author

Gleb Beliakov, Andrei Kelarev, Quan Vu, Daniela L. Calderon, Deakin University

Examples

Run this code
  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) 

Run the code above in your browser using DataLab