Packages

object ResponseSurface

The ResponseSurface companion object provides methods for creating functional forms.

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def allForms(x: MatriD, cubic: Boolean): MatriD

    Create all forms/terms for each point placing them in a new matrix.

    Create all forms/terms for each point placing them in a new matrix.

    x

    the input data matrix

    cubic

    the order of the surface (2 for quadratic, 3 for cubic)

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def cForms(p: VectoD, nt: Int, n: Int): VectoD

    Given a vector/point 'p', compute the values for all of its cubic, quadratic, linear and constant forms/terms, returning them as a vector.

    Given a vector/point 'p', compute the values for all of its cubic, quadratic, linear and constant forms/terms, returning them as a vector. for 1D: p = (x_0) => 'VectorD (1, x_0, x_02, x_03)' for 2D: p = (x_0, x_1) => 'VectorD (1, x_0, x_02, x_03, x_0*x_1, x_02*x_1, x_0*x_12, x_1, x_12, x_13)'

    p

    the source vector/point for creating forms/terms

    nt

    the number of terms

    n

    the number of predictors

  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def numTerms(n: Int, cubic: Boolean = false): Int

    The number of quadratic, linear and constant forms/terms (3, 6, 10, 15, ...) of cubic, quadratic, linear and constant forms/terms (4, 10, 20, 35, ...)

    The number of quadratic, linear and constant forms/terms (3, 6, 10, 15, ...) of cubic, quadratic, linear and constant forms/terms (4, 10, 20, 35, ...)

    n

    number of predictors

    cubic

    the order of the surface (2 for quadratic, 3 for cubic)

  18. def qForms(p: VectoD, nt: Int, n: Int): VectoD

    Given a vector/point 'p', compute the values for all of its quadratic, linear and constant forms/terms, returning them as a vector.

    Given a vector/point 'p', compute the values for all of its quadratic, linear and constant forms/terms, returning them as a vector. for 1D: p = (x_0) => 'VectorD (1, x_0, x_02)' for 2D: p = (x_0, x_1) => 'VectorD (1, x_0, x_02, x_0*x_1, x_1, x_1^2)'

    p

    the source vector/point for creating forms/terms

    nt

    the number of terms

    n

    the number of predictors

  19. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped