class DiscreteField[D, DDomain[D] <: DiscreteDomain[D], A] extends PartialFunction[PointId, A]

Defines a discrete set of values, where each associated to a point of the domain.

Self Type
DiscreteField[D, DDomain, A]
Linear Supertypes
PartialFunction[PointId, A], (PointId) => A, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DiscreteField
  2. PartialFunction
  3. Function1
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new DiscreteField(domain: DDomain[D], data: IndexedSeq[A])

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 andThen[C](k: PartialFunction[A, C]): PartialFunction[PointId, C]
    Definition Classes
    PartialFunction
  5. def andThen[C](k: (A) => C): PartialFunction[PointId, C]
    Definition Classes
    PartialFunction → Function1
  6. def apply(ptId: PointId): A
    Definition Classes
    DiscreteField → Function1
  7. def applyOrElse[A1 <: PointId, B1 >: A](x: A1, default: (A1) => B1): B1
    Definition Classes
    PartialFunction
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def canEqual(other: Any): Boolean
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  11. def compose[R](k: PartialFunction[R, PointId]): PartialFunction[R, A]
    Definition Classes
    PartialFunction
  12. def compose[A](g: (A) => PointId): (A) => A
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  13. val data: IndexedSeq[A]
  14. val domain: DDomain[D]
  15. def elementWise: ElementWiseExtractor[PointId, A]
    Definition Classes
    PartialFunction
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(other: Any): Boolean
    Definition Classes
    DiscreteField → AnyRef → Any
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  19. def foreach(f: (A) => Unit): Unit
  20. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def interpolate(interpolator: FieldInterpolator[D, DDomain, A]): Field[D, A]

    Interpolates the discrete field using the given interpolator.

    Interpolates the discrete field using the given interpolator.

    interpolator

    Implements an interpolation scheme (e.g. Nearest Neighbor, B-Spline, ...)

    returns

    A continuous field of the same type.

  23. def interpolateDifferentiable(interpolator: DifferentiableFieldInterpolator[D, DDomain, A, EuclideanVector[D]])(implicit scalar: Scalar[A]): DifferentiableField[D, A]

    Interpolates the discrete field using the given interpolator.

    Interpolates the discrete field using the given interpolator.

    interpolator

    Implements an interpolation scheme (e.g. Nearest Neighbor, B-Spline, ...)

    returns

    A continuous field of the same type.

  24. def isDefinedAt(ptId: PointId): Boolean
    Definition Classes
    DiscreteField → PartialFunction
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. def lift: (PointId) => Option[A]
    Definition Classes
    PartialFunction
  27. def map[B](f: (A) => B): DiscreteField[D, DDomain, B]
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. def orElse[A1 <: PointId, B1 >: A](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
    Definition Classes
    PartialFunction
  32. def pointsWithIds: Iterator[(Point[D], Int)]
  33. def pointsWithValues: Iterator[(Point[D], A)]
  34. def runWith[U](action: (A) => U): (PointId) => Boolean
    Definition Classes
    PartialFunction
  35. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  36. def toString(): String
    Definition Classes
    Function1 → AnyRef → Any
  37. def transform(transformation: Transformation[D])(implicit canWarp: DomainWarp[D, DDomain], canWarpField: DiscreteFieldWarp[D, DDomain, A]): DiscreteField[D, DDomain, A]
  38. def unapply(a: PointId): Option[A]
    Definition Classes
    PartialFunction
  39. def values: Iterator[A]
  40. def valuesWithIds: Iterator[(A, PointId)]
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from PartialFunction[PointId, A]

Inherited from (PointId) => A

Inherited from AnyRef

Inherited from Any

Ungrouped