the problem is I cannot get the value using the key of idSetMap in Matlab.
- Code: Select all
- >> idSetMap
 idSetMap =
 {4776=[omero.model.TagAnnotationI@760951a0]}
 >> idSetMap.get('4776')
 ans =
 []
 >> idSetMap.put('aaa','bbb')
 ans =
 []
 >> idSetMap
 idSetMap =
 {aaa=bbb, 4776=[omero.model.TagAnnotationI@760951a0]}
 
 >> idSetMap.get('aaa')
 ans =
 bbb
 >> idSetMap.get('4776')
 ans =
 []
 
    


