Skip to content

Commit be650ab

Browse files
author
Lawrence
committed
getRow now returns columns as vertical columns.
For some reason, when MATLAB reads a vector from hdf5 datasets, it will always be transposed.
1 parent 3d81894 commit be650ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

+types/+util/+dynamictable/getRow.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
if isa(VectorData.data, 'types.untyped.DataStub')...
5353
|| isa(VectorData.data, 'types.untyped.DataPipe')
54-
row{i} = VectorData.data.load(colInd);
54+
row{i} = VectorData.data.load(colInd) .';
5555
else
5656
row{i} = VectorData.data(colInd);
5757
end

0 commit comments

Comments
 (0)