You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to read a dataset from a group. This dataset is composed by 47033 rows x 2 columns. Using the read() functions I just get a 94066 array. How can I get the right object? Thanks.
The text was updated successfully, but these errors were encountered:
Extracting an array of arrays would be inefficient, especially for higher-dimensional data. What you need to do is array[col + row * 2] for accessing column col and row row. You could also use a matrix class like the one in Upsurge
I'm trying to read a dataset from a group. This dataset is composed by 47033 rows x 2 columns. Using the read() functions I just get a 94066 array. How can I get the right object? Thanks.
The text was updated successfully, but these errors were encountered: