breeze

generic

package generic

Visibility
  1. Public
  2. All

Type Members

  1. trait MMRegistry1[M] extends AnyRef

  2. trait MMRegistry2[R] extends AnyRef

  3. trait MMRegistry3[R] extends AnyRef

  4. trait MappingUFunc extends MappingUFuncLowPrio

  5. sealed trait MappingUFuncLowPrio extends AnyRef

  6. trait MethodImpl[A, +R] extends AnyRef

    Basically Function1, but not because we don't want these coming up when implicit search happens...

    Basically Function1, but not because we don't want these coming up when implicit search happens...

    A
    R

  7. trait Multimethod[Method, A <: AnyRef, R] extends MMRegistry1[Method]

    A Multimethod is basically a glorified registry that uses dynamic reflection (and subtyping) to determine which version of the method to invoke.

  8. trait Multimethod2[Method[AA, BB, RR] <: (AA, BB) ⇒ RR, A, B, R] extends (A, B) ⇒ R with MMRegistry2[Method[_ <: A, _ <: B, _ <: R]]

  9. trait Multiproc2[Method[AA, BB] <: (AA, BB) ⇒ Unit, A <: AnyRef, B] extends (A, B) ⇒ Unit with MMRegistry2[Method[_ <: A, _ <: B]]

    A Multiproc2 is a Multimethod that is guaranteed to return Unit

  10. trait UFunc extends AnyRef

    "Universal" Functions that mimic numpy's.

    "Universal" Functions that mimic numpy's. A universal function is typically defined on anything that supports elementwise maps.

    For example, exp is a UFunc: It just calls exp on all components of the passed in object.

    Moreover, "operators" like breeze.linalg.operators.OpAdd are UFuncs as well, with syntactic sugar provided by way of breeze.linalg.NumericOps.

    Additional implementations can be added as implicits by extending a UFunc's Impl or InPlaceImpl traits. For example, breeze.math.Complex extends breeze.numerics.log with the following implicit:

    implicit object logComplexImpl extends breeze.numerics.log.Impl[Complex, Complex] { def apply(v: Complex) = v.log }
  11. trait VariableUFunc[U <: UFunc, T <: VariableUFunc[U, T]] extends AnyRef

Value Members

  1. object UFunc

Ungrouped