VectorFieldTypeInformation<DoubleVector> type = new VectorFieldTypeInformation<DoubleVector>(DoubleVector.class, dimsize[out], labels, new DoubleVector(new double[dimsize[out]]));
bundle.appendColumn(type, new ArrayList<DoubleVector>());
}
else {
Map<Integer, Float> empty = Collections.emptyMap();
VectorFieldTypeInformation<SparseFloatVector> type = new VectorFieldTypeInformation<SparseFloatVector>(SparseFloatVector.class, dimsize[out], labels, new SparseFloatVector(empty, dimsize[out]));
bundle.appendColumn(type, new ArrayList<SparseFloatVector>());
}
}
else if(etyp[out] == TypeUtil.LABELLIST) {
String label = names.get(out);