trait
CanCollapseAxis[From, Axis, ColType, R, TR] extends AnyRef
Abstract Value Members
-
abstract
def
apply(from: From, axis: Axis)(f: (ColType) ⇒ R): TR
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
-
def
equals(arg0: Any): Boolean
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
final
def
wait(): Unit
Deprecated Value Members
-
def
finalize(): Unit
This trait is for multi-dimensional tensors that can logically have one of their dimensions "collapsed", e.g. summing out all columns of a matrix to give a column vector.
the tensor being collapsed
which axis is being collapsed. Usually a subtype of breeze.linalg.Axis.Value
the type of the "column" (or row or...) being collapsed.
What the column is being collapsed to.
result tensor type