Why does my Hashtable with string keys not work as expected in MATLAB?
Afficher commentaires plus anciens
I have the following code in Java:
Hashtable hash =new Hashtable();
hash.put("a", "aa");
hash.put("b", "bb");
I then pass that object back to MATLAB and try to access those elements in the Hashtable:
hash
a=hash.get('a')
b=hash.get('b')
hash.put('d','dddddd');
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Java Package Integration dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!