sealed abstract class EuclideanVector[D] extends AnyRef

An n-dimensional Vector

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EuclideanVector
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def *(s: Double): EuclideanVector[D]
  2. abstract def +(that: EuclideanVector[D]): EuclideanVector[D]
  3. abstract def -(that: EuclideanVector[D]): EuclideanVector[D]
  4. abstract def :*(that: EuclideanVector[D]): EuclideanVector[D]
  5. abstract def apply(i: Int): Double
  6. abstract def dot(that: EuclideanVector[D]): Double
  7. abstract def mapWithIndex(f: (Double, Int) => Double): EuclideanVector[D]
  8. abstract def norm2: Double
  9. abstract def toArray: Array[Double]
  10. abstract def toPoint: Point[D]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def *:(s: Double): EuclideanVector[D]
  4. def /(s: Double): EuclideanVector[D]
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def dimensionality: Int
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def map(f: (Double) => Double): EuclideanVector[D]
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def norm: Double
  18. def normalize: EuclideanVector[D]
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. def outer(that: EuclideanVector[D]): SquareMatrix[D]
  22. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toBreezeVector: DenseVector[Double]
  24. def toFloatBreezeVector: DenseVector[Float]
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. def unary_-: EuclideanVector[D]
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def data: Array[Double]
    Annotations
    @deprecated
    Deprecated

    (Since version ) real data is now private, use toArray

Inherited from AnyRef

Inherited from Any

Ungrouped