Packages

class StatFunction extends AnyRef

The StatFunction class takes an array of functions 'xa' and provides an 'apply' method for evaluating these functions at time 't' to produce a vector from which statistics can be computed. Each function represents an experimental replication.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StatFunction
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new StatFunction(xa: Functions)

    xa

    the array of functions

Value Members

  1. def apply(t1: Double, t2: Double): Array[VectorD]

    Evaluate each function in 'xa' at times 't1' and 't2', and then produce two vectors of values.

  2. def apply(t: Double): VectorD

    Evaluate each function in 'xa' at times 't', and then produce the vector of values.

    Evaluate each function in 'xa' at times 't', and then produce the vector of values.

    t

    the time at which to evaluate the functions