package tenalgebra
The tenalgebra
package contains classes, traits and objects for tensors.
- Alphabetic
- By Inheritance
- tenalgebra
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- type Int2 = (Int, Int)
- type Ints = Array[Int]
- class Tensor3D extends Error with Serializable
The
Tensor3D
class is a simple implementation for 3-dimensional tensors.The
Tensor3D
class is a simple implementation for 3-dimensional tensors. The names of the dimensions corresponds to MATLAB (row, column, sheet).
Value Members
- def comple(is: Ints, dim: Int): Ints
- object Ints
- object Tensor3D extends Serializable
The
Tensor3D
companion object provides factory methods for theTensor3D
class. - object Tensor3DTest extends App
The
Tensor3DTest
object is used to test theTensor3D
class.The
Tensor3DTest
object is used to test theTensor3D
class. > runMain scalation.tenalgebra.Tensor3DTest - object Tensor3DTest2 extends App
The
Tensor3DTest2
object is used to test theTensor3D
class.The
Tensor3DTest2
object is used to test theTensor3D
class. It tests the use of tensors and matrices for convolutional operation needed in Convolutional Nets. > runMain scalation.tenalgebra.Tensor3DTest2