EstimateH.3PG: Estimate height

Usage Arguments Examples

Usage

1

Arguments

N
Wa

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
##---- 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 (N, Wa) 
{
    k <- 4.8965 - 0.3972 * N/1000
    if (N >= 12000) {
        k <- 4.8965 - 0.3972 * 12000/1000
    }
    a <- 0.3482 + 0.0014 * N/1000
    hdom <- k * Wa^a
    return(hdom)
  }

drGeorgeXenakis/fr3PGD documentation built on June 3, 2020, 6:10 a.m.