pert_mdb: Perturbate molecular database

Description Usage Arguments Examples

Description

Perturbate molecular database

Usage

1
pert_mdb(mdb, tcoef = 10)

Arguments

mdb
tcoef

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
##---- 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 (mdb, tcoef = 10) 
{
    ncomp <- length(mdb)
    mdb_p <- list()
    for (imol in 1:ncomp) {
        mol <- mdb[[imol]]
        mol_p <- pert_mol(mol, tcoef)
        mdb_p[[imol]] <- mol_p
    }
    mdb_p
  }

conmolfields documentation built on May 2, 2019, 4:18 p.m.