public void copyColumnTo(int col, double[] targetData, int offset) {
Arrays.fill(targetData, offset, offset+rows, 0.0);
for (int i = 0; i < rows; ++i) {
AVector v = unsafeGetVec(i);
if (v != null)
targetData[offset+i] = v.unsafeGet(col);
}
}
@Override
public SparseColumnMatrix getTransposeView() {