disaggpoly: Polynomial for days without peak

Description Usage Arguments Value Author(s) Examples

Description

Polynomial for days without peak

Usage

1

Arguments

t

time parameter

a0

parameter

a1

parameter

a2

parameter

a3

parameter

Value

Q_i(t)

Author(s)

Svenja Fischer

Examples

1
2
3
4
5
6
7
8
9
##---- 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 (t, a0, a1, a2, a3)
{
    return(a3 * t^3 + a2 * t^2 + a1 * t + a0)
  }

SvenjaFischer/Disagg documentation built on May 14, 2019, 10:37 a.m.