Skip to content

Instantly share code, notes, and snippets.

@juanpabloaj
Created June 16, 2013 21:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juanpabloaj/5793514 to your computer and use it in GitHub Desktop.
Save juanpabloaj/5793514 to your computer and use it in GitHub Desktop.
java treemap in matlab
function treetest
% java TreeMap
import java.util.TreeMap
tree = TreeMap;
tree.put(1, 10);
tree.put(1, 11);
tree.put(2, 20);
tree.values()
% output ans = [11.0, 20.0]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment