breeze.linalg

ImmutableNumericOps

trait ImmutableNumericOps[+This] extends Any

Linear Supertypes
Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ImmutableNumericOps
  2. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def getClass(): Class[_]

    Definition Classes
    Any
  2. abstract def repr: This

Concrete Value Members

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

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

    Definition Classes
    Any
  3. final def %[TT >: This, B, That](b: B)(implicit op: operators.OpMod.Impl2[TT, B, That]): That

    Alias for :%(b) when b is a scalar.

  4. final def &[TT >: This, B, That](b: B)(implicit op: operators.OpAnd.Impl2[TT, B, That]): That

    Alias for :&&(b) for all b.

  5. final def *[TT >: This, B, That](b: B)(implicit op: operators.OpMulMatrix.Impl2[TT, B, That]): That

    Matrix multiplication (and scalar multiplication that follows standard order of operations)

  6. final def -[TT >: This, B, That](b: B)(implicit op: operators.OpSub.Impl2[TT, B, That]): That

    Alias for :-(b) for all b.

  7. final def /[TT >: This, B, That](b: B)(implicit op: operators.OpDiv.Impl2[TT, B, That]): That

    Alias for :/(b) when b is a scalar.

  8. final def :!=[TT >: This, B, That](b: B)(implicit op: operators.OpNe.Impl2[TT, B, That]): That

    Element-wise inequality comparator of this and b.

  9. final def :%[TT >: This, B, That](b: B)(implicit op: operators.OpMod.Impl2[TT, B, That]): That

    Element-wise modulo of this and b.

  10. final def :&[TT >: This, B, That](b: B)(implicit op: operators.OpAnd.Impl2[TT, B, That]): That

    Element-wise logical "and" operator -- returns true if corresponding elements are non-zero.

  11. final def :*[TT >: This, B, That](b: B)(implicit op: operators.OpMulScalar.Impl2[TT, B, That]): That

    Element-wise product of this and b.

  12. final def :+[TT >: This, B, That](b: B)(implicit op: operators.OpAdd.Impl2[TT, B, That]): That

    Element-wise sum of this and b.

  13. final def :-[TT >: This, B, That](b: B)(implicit op: operators.OpSub.Impl2[TT, B, That]): That

    Element-wise difference of this and b.

  14. final def :/[TT >: This, B, That](b: B)(implicit op: operators.OpDiv.Impl2[TT, B, That]): That

    Element-wise quotient of this and b.

  15. final def :==[TT >: This, B, That](b: B)(implicit op: operators.OpEq.Impl2[TT, B, That]): That

    Element-wise equality comparator of this and b.

  16. final def :^[TT >: This, B, That](b: B)(implicit op: operators.OpPow.Impl2[TT, B, That]): That

    Element-wise exponentiation of this and b.

  17. final def :^^[TT >: This, B, That](b: B)(implicit op: operators.OpXor.Impl2[TT, B, That]): That

    Element-wise logical "xor" operator -- returns true if only one of the corresponding elements is non-zero.

  18. final def :|[TT >: This, B, That](b: B)(implicit op: operators.OpOr.Impl2[TT, B, That]): That

    Element-wise logical "or" operator -- returns true if either element is non-zero.

  19. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  20. def \[TT >: This, B, That](b: B)(implicit op: operators.OpSolveMatrixBy.Impl2[TT, B, That]): That

    Shaped solve of this by b.

  21. final def ^^[TT >: This, B, That](b: B)(implicit op: operators.OpXor.Impl2[TT, B, That]): That

    Alias for :^^(b) for all b.

  22. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  23. final def dot[TT >: This, B, BB >: B, That](b: B)(implicit op: operators.OpMulInner.Impl2[TT, BB, That]): That

    Inner product of this and b.

  24. def equals(arg0: Any): Boolean

    Definition Classes
    Any
  25. def hashCode(): Int

    Definition Classes
    Any
  26. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  27. final def t[TT >: This, That, Slice1, Slice2, Result](a: Slice1, b: Slice2)(implicit op: CanTranspose[TT, That], canSlice: CanSlice2[That, Slice1, Slice2, Result]): Result

    A transposed view of this object, followed by a slice.

    A transposed view of this object, followed by a slice. Sadly frequently necessary.

  28. final def t[TT >: This, That](implicit op: CanTranspose[TT, That]): That

    A transposed view of this object.

  29. def toString(): String

    Definition Classes
    Any
  30. final def unary_![TT >: This, That](implicit op: operators.OpNot.Impl[TT, That]): That

  31. final def unary_-[TT >: This, That](implicit op: operators.OpNeg.Impl[TT, That]): That

  32. final def |[TT >: This, B, That](b: B)(implicit op: operators.OpOr.Impl2[TT, B, That]): That

    Alias for :||(b) for all b.

Deprecated Value Members

  1. final def norm[TT >: This, B, R](b: B)(implicit op: norm.Impl2[TT, B, R]): R

    Represents the norm of this vector

    Represents the norm of this vector

    Annotations
    @deprecated
    Deprecated

    (Since version 0.9) Use norm(XXX) instead of XXX.norm

  2. final def norm[TT >: This, R]()(implicit op: norm.Impl[TT, R]): R

    Represents the "natural" norm of this vector, for types that don't support arbitrary norms

    Represents the "natural" norm of this vector, for types that don't support arbitrary norms

    Annotations
    @deprecated
    Deprecated

    (Since version 0.9) Use norm(XXX) instead of XXX.norm

Inherited from Any

Ungrouped