Packages

p

breeze

generic

package generic

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. Protected

Type Members

  1. trait ElementwiseUFunc extends UFunc
  2. trait MMRegistry1[M] extends AnyRef
  3. trait MMRegistry2[R] extends AnyRef
  4. trait MMRegistry3[R] extends AnyRef
  5. trait MappingUFunc extends ElementwiseUFunc
  6. sealed trait MappingUFuncLowPrio extends GenericOps
  7. trait MappingUFuncOps extends MappingUFuncLowPrio with GenericOps
  8. trait MethodImpl[A, +R] extends AnyRef

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

  9. 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.

  10. trait ShapedUFunc extends UFunc
  11. trait UFunc extends HasOps

    "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, InPlaceImpl, or SinkImpl 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 }
  12. trait VariableUFunc[U <: UFunc, T <: VariableUFunc[U, T]] extends AnyRef
  13. case class WrappedUFunc1[A1, R](f: (A1) => R) extends VariableUFunc[WrappedUFunc.type, WrappedUFunc1[A1, R]] with Product with Serializable
  14. case class WrappedUFunc2[A1, A2, R](f: (A1, A2) => R) extends VariableUFunc[WrappedUFunc.type, WrappedUFunc2[A1, A2, R]] with Product with Serializable
  15. trait WrappedUFuncLowPrio extends AnyRef
  16. trait ZeroPreservingUFunc extends ElementwiseUFunc
  17. sealed trait ZeroPreservingUFuncLowPrio extends MappingUFuncOps
  18. trait ZeroPreservingUFuncOps extends ZeroPreservingUFuncLowPrio with MappingUFuncOps

Value Members

  1. object UFunc
  2. object WrappedUFunc extends UFunc with WrappedUFuncLowPrio

Ungrouped