summary.fes:

Usage Arguments Examples

View source: R/metadynminer.R

Usage

1
summary.fes(inputfes)

Arguments

inputfes

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
##---- 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 (inputfes) 
{
    if (inputfes$dimension == 1) {
        cat("1D free energy surface with ")
        cat(inputfes$rows)
        cat(" points and maximum ")
        cat(max(inputfes$fes))
        cat("\n")
    }
    if (inputfes$dimension == 2) {
        cat("2D free energy surface with ")
        cat(inputfes$rows)
        cat(" x ")
        cat(inputfes$rows)
        cat(" points and maximum ")
        cat(max(inputfes$fes))
        cat("\n")
    }
  }

sucurz/testing documentation built on May 29, 2019, 9:51 a.m.