I have a field of type
<1x1 java.lang.String>
in Matlab. Its value is 13:06:40When I read this mat-file in python, It gets converted to
MatlabOpaque([ ('', 'java', 'java.lang.String', [[172, 237, 0, 5, 116, 0, 8, 49, 50, 58, 48, 49, 58, 53, 49]])], dtype=[('s0', 'O'), ('s1', 'O'), ('s2', 'O'), ('arr', 'O')])
- I save this back to MAT-file using scipy.io and I have a struct with the dtype above instead of
<1x1 java.lang.String>
Any way I can retrieve the time stamp using python and save it as a java.lang.String object ?