Class TensorBase<T,U,W,Z,Y,D extends Serializable,X extends Number>

java.lang.Object
org.flag4j.core.TensorBase<T,U,W,Z,Y,D,X>
Type Parameters:
T - Type of this tensor.
U - Dense Tensor type.
W - Complex Tensor type.
Z - Dense complex tensor type.
Y - Real Tensor type.
D - Type of the storage data structure for the tensor. This common use case will be an array or list-like data structure.
X - The type of individual entry within the D data structure
All Implemented Interfaces:
Serializable, TensorComparisonsMixin, TensorManipulationsMixin<T>, TensorOperationsMixin<T,U,W,Z,Y,X>, TensorPropertiesMixin
Direct Known Subclasses:
DenseTensorBase, SparseTensorBase

public abstract class TensorBase<T,U,W,Z,Y,D extends Serializable,X extends Number> extends Object implements Serializable, TensorComparisonsMixin, TensorPropertiesMixin, TensorManipulationsMixin<T>, TensorOperationsMixin<T,U,W,Z,Y,X>
The base class for all tensors. A tensor is an algebraic object equivalent to a multidimensional array with a single data type.
See Also: