class Mixture[A] extends ProbabilityDistribution[A]
- Alphabetic
- By Inheritance
- Mixture
- ProbabilityDistribution
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Mixture(base: ProbabilityDistribution[A], components: => Vector[Weighted[ProbabilityDistribution[A]]])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- def ->[B](y: B): (Mixture[A], B)
- def <++>(components: => Vector[Weighted[ProbabilityDistribution[A]]]): Mixture[A]
mix in weighted distributions; the mixed in distributions are called by name, so can depend on this distribution.
mix in weighted distributions; the mixed in distributions are called by name, so can depend on this distribution.
- Definition Classes
- ProbabilityDistribution
- def <+>(mixin: => ProbabilityDistribution[A], weight: Double): Mixin[A]
generates from the mixed in distribution with probability _weight_, otherwise defaults to this distribution; as the mixed in distribution is called by name, it may depend on the present one.
generates from the mixed in distribution with probability _weight_, otherwise defaults to this distribution; as the mixed in distribution is called by name, it may depend on the present one.
- Definition Classes
- ProbabilityDistribution
- def <+?>(mixin: => ProbabilityDistribution[Option[A]], weight: Double): MixinOpt[A]
generates from the mixed in optional valued distribution with probability
weight
, otherwise, or if the optional returns None, defaults to this distribution; the mixed in distribution is call by name, so may depend on this distribution.generates from the mixed in optional valued distribution with probability
weight
, otherwise, or if the optional returns None, defaults to this distribution; the mixed in distribution is call by name, so may depend on this distribution.- Definition Classes
- ProbabilityDistribution
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def condMap[B](f: (A) => Option[B]): Mixture[B]
- Definition Classes
- Mixture → ProbabilityDistribution
- def conditioned(p: (A) => Boolean): Mixture[A]
- Definition Classes
- Mixture → ProbabilityDistribution
- lazy val dists: Vector[ProbabilityDistribution[A]]
- def ensuring(cond: (Mixture[A]) => Boolean, msg: => Any): Mixture[A]
- def ensuring(cond: (Mixture[A]) => Boolean): Mixture[A]
- def ensuring(cond: Boolean, msg: => Any): Mixture[A]
- def ensuring(cond: Boolean): Mixture[A]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fibProduct[Q, B](quot: (A) => Q, fibers: (Q) => ProbabilityDistribution[B]): FiberProduct[A, Q, B]
- Definition Classes
- ProbabilityDistribution
- def findFut(p: (A) => Boolean, maxloops: Long): Future[Option[A]]
Find element satisfying predicate, runs concurrently, returning future
Find element satisfying predicate, runs concurrently, returning future
- Definition Classes
- ProbabilityDistribution
- lazy val first: ProbabilityDistribution[A]
- def flatMap[B](f: (A) => ProbabilityDistribution[B]): ProbabilityDistribution[B]
- Definition Classes
- ProbabilityDistribution
- def formatted(fmtstr: String): String
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[B](f: (A) => B): ProbabilityDistribution[B]
- Definition Classes
- ProbabilityDistribution
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def next: A
the next random value
the next random value
- Definition Classes
- Mixture → ProbabilityDistribution
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def product[B](that: ProbabilityDistribution[B]): Product[A, B]
- Definition Classes
- ProbabilityDistribution
- lazy val ps: Vector[Double]
- lazy val qs: Vector[Double]
- def randomVariable: Iterator[A]
- Definition Classes
- ProbabilityDistribution
- lazy val rest: Vector[Weighted[ProbabilityDistribution[A]]]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- lazy val weightedDists: Vector[(ProbabilityDistribution[A], Double)]
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
- def →[B](y: B): (Mixture[A], B)
- Implicit
- This member is added by an implicit conversion from Mixture[A] toArrowAssoc[Mixture[A]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Use
->
instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.