breeze.linalg

ImmutableNumericOps

trait ImmutableNumericOps[+This] extends Any

Linear Supertypes
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.OpMod.Impl2[TT, B, That]): That

    Element-wise modulo of this and b.

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

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

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

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

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

    Element-wise product of this and b.

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

    Element-wise sum of this and b.

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

    Alias for :-(b) for all b.

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

    Element-wise difference of this and b.

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

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

    Element-wise quotient of this and b.

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

  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 ==(arg0: Any): Boolean

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

    Shaped solve of this by b.

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

    Element-wise exponentiation of this and b.

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

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

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

  21. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  22. 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.

  23. def equals(arg0: Any): Boolean

    Definition Classes
    Any
  24. def hashCode(): Int

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

    Definition Classes
    Any
  26. final def t[TT >: This, That, Slice1, Result](a: Slice1)(implicit op: CanTranspose[TT, That], canSlice: CanSlice[That, Slice1, 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.

  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.

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

Deprecated Value Members

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

    Annotations
    @deprecated
    Deprecated

    (Since version 0.13) This operator has confusing and often surprising precedence that leads to bugs. Use %:% instead.

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

    Annotations
    @deprecated
    Deprecated

    (Since version 0.13) This operator has confusing and often surprising precedence that leads to bugs. Use &:& instead.

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

    Annotations
    @deprecated
    Deprecated

    (Since version 0.13) This operator has confusing and often surprising precedence that leads to bugs. Use *:* instead.

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

    Annotations
    @deprecated
    Deprecated

    (Since version 0.13) This operator has confusing and often surprising precedence that leads to bugs. Use +:+ instead.

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

    Annotations
    @deprecated
    Deprecated

    (Since version 0.13) This operator has confusing and often surprising precedence that leads to bugs. Use -:- instead.

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

    Annotations
    @deprecated
    Deprecated

    (Since version 0.13) This operator has confusing and often surprising precedence that leads to bugs. Use /:/ instead.

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

    Annotations
    @deprecated
    Deprecated

    (Since version 0.13) This operator has confusing and often surprising precedence that leads to bugs. Use : instead.

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

    Annotations
    @deprecated
    Deprecated

    (Since version 0.13) This operator has confusing and often surprising precedence that leads to bugs. Use : instead.

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

    Annotations
    @deprecated
    Deprecated

    (Since version 0.13) This operator has confusing and often surprising precedence that leads to bugs. Use |:| instead.

Inherited from Any

Ungrouped