Class RCDoubleMatrix1D

All Implemented Interfaces:
Serializable, Cloneable

public class RCDoubleMatrix1D extends DoubleMatrix1D
A row-compressed 1D matrix. The only deviation from the contract of DoubleMatrix1D is in apply(), which only operates on the non-empty (0) elements. This implementation has a highly optimized dot product computer. If you need to compute the dot product of a RCDoubleMatrix1D with another DoubleMatrix1D, call zDotProduct on this, not on the other. This is because getQuick() and setQuick() are not very fast for this.
Author:
pavlidis
See Also: