o

breeze.util

JavaArrayOps

object JavaArrayOps

This utility class facilitates transparent access of breeze data objects from plain Java without Scala-related Generic complications.

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def array2CToDm(array: Array[Array[Complex]]): DenseMatrix[Complex]
  5. def array2DToDm(array: Array[Array[Double]]): DenseMatrix[Double]
  6. def array2FToDm(array: Array[Array[Float]]): DenseMatrix[Float]
  7. def array2IToDm(array: Array[Array[Int]]): DenseMatrix[Int]
  8. def array2LToDm(array: Array[Array[Long]]): DenseMatrix[Long]
  9. def array2ToDm[V](values: Array[Array[V]])(implicit arg0: ClassTag[V]): DenseMatrix[V]

    Constructs DenseMatrix from Array[Array[V]] input.

    Constructs DenseMatrix from Array[Array[V]] input. Input is in row-major like format, similar to DenseMatrix( (1,2 3), (4,5,6),... ) syntax, which is defined in breeze.linalg.Matrix. This constructor was written for JavaCompatible.

  10. def arrayCToDv(array: Array[Complex]): DenseVector[Complex]
  11. def arrayDToDv(array: Array[Double]): DenseVector[Double]
  12. def arrayFToDv(array: Array[Float]): DenseVector[Float]
  13. def arrayIToDv(array: Array[Int]): DenseVector[Int]
  14. def arrayLToDv(array: Array[Long]): DenseVector[Long]
  15. def arrayToDv[V](array: Array[V])(implicit arg0: ClassTag[V]): DenseVector[V]
  16. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  17. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  18. def dmCToArray2(data: DenseMatrix[Complex]): Array[Array[Complex]]
  19. def dmDToArray2(data: DenseMatrix[Double]): Array[Array[Double]]
  20. def dmFToArray2(data: DenseMatrix[Float]): Array[Array[Float]]
  21. def dmIToArray2(data: DenseMatrix[Int]): Array[Array[Int]]
  22. def dmLToArray2(data: DenseMatrix[Long]): Array[Array[Long]]
  23. def dmToArray2[V](dm: DenseMatrix[V]): Array[Array[V]]
  24. def dvCToArray(data: DenseVector[Complex]): Array[Complex]
  25. def dvDToArray(data: DenseVector[Double]): Array[Double]
  26. def dvFToArray(data: DenseVector[Float]): Array[Float]
  27. def dvIToArray(data: DenseVector[Int]): Array[Int]
  28. def dvLToArray(data: DenseVector[Long]): Array[Long]
  29. def dvToArray[V](dv: DenseVector[V]): Array[V]
  30. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  32. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  33. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  34. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  37. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  38. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped