Learn R Programming

Rfmtool (version 5.0.3)

fm.sparse_get_pairs: Get pairs computation function in sparse representation

Description

Export the internal arrays of the sparse capacity as arrays of singletons, pairs and tuples.

Usage

fm.sparse_get_pairs( envsp=NULL)

Value

output

The output is the array of pairs and their number.

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_pair_sparse(1,2, 0.4, envsp)
    envsp <-fm.add_pair_sparse(1,3, 0.3, envsp)

    pairs <- fm.sparse_get_pairs(envsp)
    pairs
         envsp <- fm.FreeSparseFM(envsp) 
  

Run the code above in your browser using DataLab