Package org.flag4j.core.dense_base
Interface DenseMixin<X extends Number>
- Type Parameters:
X
- Type of individual element of the vector, matrix, or tensor.
- All Known Implementing Classes:
CMatrix
,ComplexDenseTensorBase
,CTensor
,CVector
,DenseTensorBase
,Matrix
,RealDenseTensorBase
,Tensor
,Vector
public interface DenseMixin<X extends Number>
Interface which specifies methods that any dense vector, matrix, or tensor should implement.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Subtracts a specified value from all entries of this tensor and stores the result in this tensor.void
Subtracts a specified value from all entries of this tensor and stores the result in this tensor.void
Subtracts a specified value from all entries of this tensor and stores the result in this tensor.void
Subtracts a specified value from all entries of this tensor and stores the result in this tensor.
-
Method Details
-
addEq
Subtracts a specified value from all entries of this tensor and stores the result in this tensor.- Parameters:
b
- Value to subtract from all entries of this tensor.
-
addEq
Subtracts a specified value from all entries of this tensor and stores the result in this tensor.- Parameters:
b
- Value to subtract from all entries of this tensor.
-
subEq
Subtracts a specified value from all entries of this tensor and stores the result in this tensor.- Parameters:
b
- Value to subtract from all entries of this tensor.
-
subEq
Subtracts a specified value from all entries of this tensor and stores the result in this tensor.- Parameters:
b
- Value to subtract from all entries of this tensor.
-