object JavaArrayOps
This utility class facilitates transparent access of breeze data objects from plain Java without Scala-related Generic complications.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JavaArrayOps
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def array2CToDm(array: Array[Array[Complex]]): DenseMatrix[Complex]
- def array2DToDm(array: Array[Array[Double]]): DenseMatrix[Double]
- def array2FToDm(array: Array[Array[Float]]): DenseMatrix[Float]
- def array2IToDm(array: Array[Array[Int]]): DenseMatrix[Int]
- def array2LToDm(array: Array[Array[Long]]): DenseMatrix[Long]
-
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.
- def arrayCToDv(array: Array[Complex]): DenseVector[Complex]
- def arrayDToDv(array: Array[Double]): DenseVector[Double]
- def arrayFToDv(array: Array[Float]): DenseVector[Float]
- def arrayIToDv(array: Array[Int]): DenseVector[Int]
- def arrayLToDv(array: Array[Long]): DenseVector[Long]
- def arrayToDv[V](array: Array[V])(implicit arg0: ClassTag[V]): DenseVector[V]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
- def dmCToArray2(data: DenseMatrix[Complex]): Array[Array[Complex]]
- def dmDToArray2(data: DenseMatrix[Double]): Array[Array[Double]]
- def dmFToArray2(data: DenseMatrix[Float]): Array[Array[Float]]
- def dmIToArray2(data: DenseMatrix[Int]): Array[Array[Int]]
- def dmLToArray2(data: DenseMatrix[Long]): Array[Array[Long]]
- def dmToArray2[V](dm: DenseMatrix[V])(implicit arg0: ClassTag[V]): Array[Array[V]]
- def dvCToArray(data: DenseVector[Complex]): Array[Complex]
- def dvDToArray(data: DenseVector[Double]): Array[Double]
- def dvFToArray(data: DenseVector[Float]): Array[Float]
- def dvIToArray(data: DenseVector[Int]): Array[Int]
- def dvLToArray(data: DenseVector[Long]): Array[Long]
- def dvToArray[V](dv: DenseVector[V])(implicit arg0: ClassTag[V]): Array[V]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )