Class/Object

io.github.mandar2812.dynaml.analysis

BSplineGenerator

Related Docs: object BSplineGenerator | package analysis

Permalink

abstract class BSplineGenerator extends MetaPipe21[Int, Int, Double, Double]

(B)ASIC SPLINES

B-Spline generator as described in B(asic)-Spline Basics by Carl de Boor.

Bi,k(t) := ωi,k(t) Bi,k-1(t) + (1 - ωi+1,k(t)) Bi+1,k-1

Linear Supertypes
MetaPipe21[Int, Int, Double, Double], DataPipe2[Int, Int, DataPipe[Double, Double]], Serializable, Serializable, DataPipeConvertible[(Int, Int), DataPipe[Double, Double]], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BSplineGenerator
  2. MetaPipe21
  3. DataPipe2
  4. Serializable
  5. Serializable
  6. DataPipeConvertible
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BSplineGenerator()

    Permalink

Abstract Value Members

  1. abstract val knot: (Int) ⇒ Double

    Permalink

    The knot sequence, strictly non-decreasing

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def >[Result2](otherPipe: DataPipe[DataPipe[Double, Double], Result2]): DataPipe2[Int, Int, Result2]

    Permalink
    Definition Classes
    DataPipe2
  5. def >>[E](next: DataPipe[Double, E]): MetaPipe21[Int, Int, Double, E]

    Permalink
    Definition Classes
    MetaPipe21
  6. def apply(data1: Int, data2: Int): DataPipe[Double, Double]

    Permalink
    Definition Classes
    DataPipe2
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def bsplinerec(x: Double, k: Int, i: Int, acc: Seq[Double]): Double

    Permalink
    Attributes
    protected
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. def omega(i: Int, k: Int)(x: Double): Double

    Permalink

    ωi,k(t) := 0, if ti = ti+k-1 otherwise, (t - ti)/(ti+k-1 - ti)

    ωi,k(t) := 0, if ti = ti+k-1 otherwise, (t - ti)/(ti+k-1 - ti)

  20. def run(segment: Int, order: Int): DataPipe[Double, Double]

    Permalink
    Definition Classes
    BSplineGenerator → DataPipe2
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  22. def toPipe: ((Int, Int)) ⇒ DataPipe[Double, Double]

    Permalink
    Definition Classes
    DataPipe2 → DataPipeConvertible
  23. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from MetaPipe21[Int, Int, Double, Double]

Inherited from DataPipe2[Int, Int, DataPipe[Double, Double]]

Inherited from Serializable

Inherited from Serializable

Inherited from DataPipeConvertible[(Int, Int), DataPipe[Double, Double]]

Inherited from AnyRef

Inherited from Any

Ungrouped