Class DenseTensorBase<T,W,Y,D extends Serializable,X extends Number>

java.lang.Object
org.flag4j.core.TensorBase<T,T,W,W,Y,D,X>
org.flag4j.core.dense_base.DenseTensorBase<T,W,Y,D,X>
Type Parameters:
T - Type of this tensor.
W - Complex Tensor type.
Y - Real Tensor type.
D - Type of the storage data structure for the tensor. The 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, DenseMixin<X>, TensorComparisonsMixin, TensorManipulationsMixin<T>, TensorOperationsMixin<T,T,W,W,Y,X>, TensorPropertiesMixin
Direct Known Subclasses:
ComplexDenseTensorBase, RealDenseTensorBase

public abstract class DenseTensorBase<T,W,Y,D extends Serializable,X extends Number> extends TensorBase<T,T,W,W,Y,D,X> implements DenseMixin<X>
This is the base class for all dense tensors.
See Also: