compare_matrix: Compare two interaction matrices

Description Usage Arguments Examples

Description

Qualitative comparison between two numeric matrices

Usage

1

Arguments

a
b

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (a, b) 
{
    av = c(a)
    bv = c(b)
    for (i in 1:length(av)) {
        av[i] = interaction_compare(av[i], bv[i])
    }
    return(av)
  }

lkshrsch/gLVInterNetworks documentation built on May 21, 2019, 7:33 a.m.