if(!sparse) {
VectorFieldTypeInformation<DoubleVector> type = new VectorFieldTypeInformation<DoubleVector>(DoubleVector.class, DoubleVector.STATIC, dimsize[out], labels, new DoubleVector(new double[dimsize[out]]));
bundle.appendColumn(type, new ArrayList<DoubleVector>());
}
else {
VectorFieldTypeInformation<SparseFloatVector> type = new VectorFieldTypeInformation<SparseFloatVector>(SparseFloatVector.class, dimsize[out], labels, new SparseFloatVector(SparseFloatVector.EMPTYMAP, dimsize[out]));
bundle.appendColumn(type, new ArrayList<SparseFloatVector>());
}
}
else if(etyp[out] == TypeUtil.LABELLIST) {
String label = names.get(out);