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
For c16 data types I needed to change one line from:
dataType = dtypesMatlab{strcmp(dtNPY(2:3), dtypesNPY)};
to:
dataType = dtypesMatlab{strcmp(dtNPY(2:end), dtypesNPY)};
since that npy type is three characters, not two like the rest
The text was updated successfully, but these errors were encountered:
For c16 data types I needed to change one line from:
dataType = dtypesMatlab{strcmp(dtNPY(2:3), dtypesNPY)};
to:
dataType = dtypesMatlab{strcmp(dtNPY(2:end), dtypesNPY)};
since that npy type is three characters, not two like the rest
The text was updated successfully, but these errors were encountered: