SofiaLogistic: Logistic function

Description Usage Arguments Details Value Author(s) References See Also Examples

Description

Compute values of a logistic function as used in Sofia models.

Usage

1

Arguments

par

parameters of logistic function, a vector of length 3 (asymptote, slope, turning point)

x

independent variable

...

further arguments (not used)

Details

No details.

Value

a vector

Author(s)

Matthias Forkel <matthias.forkel@geo.tuwien.ac.at> [aut, cre]

References

No reference.

See Also

Sofia

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
x <- -20:20
par <- c(1, 0.5, 0)
plot(x, SofiaLogistic(par, x), type="l")

par <- c(1, 0.2, 0)
plot(x, SofiaLogistic(par, x), type="l")

par <- c(10, -1, 0)
plot(x, SofiaLogistic(par, x), type="l")

par <- c(-2, -1, 0)
plot(x, SofiaLogistic(par, x), type="l")

SOfireA documentation built on May 2, 2019, 6:07 p.m.