Interface Matrix2D<N extends Comparable<N>, M extends Matrix2D<N,M> >
- All Superinterfaces:
Access1D<N>, Access1D.Aggregatable<N>, Access2D<N>, Access2D.Aggregatable<N>, Group, Group.Additive<M>, NormedVectorSpace<M,N>, Operation, Operation.Addition<M>, Operation.Multiplication<M>, Operation.Subtraction<M>, ScalarOperation, ScalarOperation.Addition<M, N>, ScalarOperation.Division<M, N>, ScalarOperation.Multiplication<M, N>, ScalarOperation.Subtraction<M, N>, Structure1D, Structure2D, VectorSpace<M, N>
- All Known Subinterfaces:
DecompositionStore<N>, MatrixStore<N>, PhysicalStore<N>
- All Known Implementing Classes:
AboveBelowStore, AbstractStore, BasicMatrix, ColumnsStore, ColumnsSupplier, ComposingStore, CompressedSparseR064, ConjugatedStore, DiagonalStore, FactoryStore, GenericStore, IdentityStore, ImageData, ImageData.SingleChannel, LeftRightStore, LimitStore, LogicalStore, LowerHessenbergStore, LowerSymmetricStore, LowerTriangularStore, MatrixC128, MatrixH256, MatrixQ128, MatrixR032, MatrixR064, MatrixR128, OffsetStore, R032Store, R064CSC, R064CSR, R064Store, RawStore, RepeatedColumnsStore, RepeatedRowsStore, RowsStore, RowsSupplier, SelectingStore, ShadingStore, SingleStore, SparseStore, SuperimposedStore, TransjugatedStore, TransposedStore, UnaryOperatoStore, UpperHessenbergStore, UpperSymmetricStore, UpperTriangularStore, WrapperStore, ZeroStore
public interface Matrix2D<N extends Comparable<N>, M extends Matrix2D<N,M>>
extends Access2D<N>, Access2D.Aggregatable<N>, NormedVectorSpace<M,N>, Operation.Subtraction<M>, Operation.Multiplication<M>, ScalarOperation.Addition<M,N>, ScalarOperation.Subtraction<M,N>, ScalarOperation.Division<M,N>
Definition of what's common to
BasicMatrix and MatrixStore. At this point, at least, it is
not recommended to write any code in terms of this interface. It's relatively new, the definition may
change, and it may even be removed again.-
Nested Class Summary
Nested classes/interfaces inherited from interface Access2D
Access2D.Aggregatable<N>, Access2D.Collectable<N,R>, Access2D.ColumnView<N>, Access2D.ElementView<N>, Access2D.RowView<N>, Access2D.SelectionView<N>, Access2D.Sliceable<N>, Access2D.Visitable<N> Nested classes/interfaces inherited from interface Group
Group.Additive<T>, Group.Multiplicative<T>Nested classes/interfaces inherited from interface Operation
Operation.Addition<T>, Operation.Division<T>, Operation.Multiplication<T>, Operation.Subtraction<T>Nested classes/interfaces inherited from interface ScalarOperation
ScalarOperation.Addition<T,N>, ScalarOperation.Division<T, N>, ScalarOperation.Multiplication<T, N>, ScalarOperation.Subtraction<T, N> Nested classes/interfaces inherited from interface Structure1D
Structure1D.BasicMapper<T>, Structure1D.IndexMapper<T>, Structure1D.IntIndex, Structure1D.Logical<S,B>, Structure1D.LongIndex, Structure1D.LoopCallback Nested classes/interfaces inherited from interface Structure2D
Structure2D.IntRowColumn, Structure2D.Logical<S,B>, Structure2D.LongRowColumn, Structure2D.ReducibleTo1D<R>, Structure2D.Reshapable, Structure2D.RowColumnKey<R, C>, Structure2D.RowColumnMapper<R, C> -
Method Summary
Methods inherited from interface Access1D
asCollectable1D, asKeyed1D, asList, axpy, dot, select, supplyTo, toList, toRawCopy1DMethods inherited from interface Access1D.Aggregatable
aggregateAll, aggregateRange, indexOfLargestMethods inherited from interface Access2D
asCollectable2D, asKeyed2D, byteValue, byteValue, byteValue, byteValue, columns, columns, columns, doubleValue, doubleValue, doubleValue, doubleValue, elements, floatValue, floatValue, floatValue, floatValue, get, get, intValue, intValue, intValue, intValue, longValue, longValue, longValue, longValue, nonzeros, rows, rows, rows, select, select, shortValue, shortValue, shortValue, shortValue, toRawCopy2DMethods inherited from interface Access2D.Aggregatable
aggregateColumn, aggregateColumn, aggregateDiagonal, aggregateDiagonal, aggregateRow, aggregateRow, reduceColumns, reduceRowsMethods inherited from interface Group.Additive
negateMethods inherited from interface NormedVectorSpace
isSmall, norm, signumMethods inherited from interface Operation.Addition
addMethods inherited from interface Operation.Multiplication
multiply, powerMethods inherited from interface Operation.Subtraction
subtractMethods inherited from interface ScalarOperation.Addition
add, add, addMethods inherited from interface ScalarOperation.Division
divide, divide, divideMethods inherited from interface ScalarOperation.Multiplication
multiply, multiply, multiplyMethods inherited from interface ScalarOperation.Subtraction
subtract, subtract, subtractMethods inherited from interface Structure2D
count, countColumns, countRows, firstInColumn, firstInRow, getColDim, getMaxDim, getMinDim, getRowDim, isEmpty, isFat, isScalar, isSquare, isTall, isVector, limitOfColumn, limitOfRow, sizeMethods inherited from interface VectorSpace
conjugate
-
Method Details
-
equals
- Returns:
- true if the same size/shape and elements are equal to the given accuracy. norm of the difference between [this] and [another] is zero within the limits of [precision].
-
toScalar
-
transpose
M transpose()
-