generator: Small helper functions

Description Usage Arguments Examples

Description

Small helper functions

Usage

1

Arguments

g

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 (g) 
{
    if (is.null(E(g)$weight)) 
        E(g)$weight = 1
    A <- get.adjacency(g, attr = "weight")
    D <- diag(apply(A, 1, sum))
    H <- A - D
    return(H)
  }

nea documentation built on May 2, 2019, 5:52 p.m.