ch.javasoft.smx.iface
Interface WritableVector<N extends Number>
- All Superinterfaces:
- Cloneable, MatrixBase<N>, VectorBase<N>, WritableMatrix<N>
- All Known Subinterfaces:
- DoubleVector
- All Known Implementing Classes:
- AbstractVector, DefaultBigIntegerVector, DefaultDoubleVector
public interface WritableVector<N extends Number>
- extends VectorBase<N>, WritableMatrix<N>
The WritableVector contains methods for writable vectors of
any data type. To writable vectors, data can be written, but not read from.
Some implementations, however, might implement both readable and writable
interfaces for some specific type.
- See Also:
ReadableVector
setValueAt
void setValueAt(int index,
N value)
swapValues
void swapValues(int indexA,
int indexB)
transpose
WritableVector<N> transpose()
- Specified by:
transpose in interface MatrixBase<N extends Number>- Specified by:
transpose in interface WritableMatrix<N extends Number>
toReadableVector
ReadableVector<N> toReadableVector(boolean enforceNewInstance)