Feeling restricted even after having access to all the toolbox and third party .m codes for Matlab? You can still broaden your Matlab horizon using Java classes in it. For example, let take a look how we can use LinkedList of Java in Matlab.
>> import java.util.LinkedList;
>> list = LinkedList();
>> list.add(1);
>> list.add(2);
>> list.add(3);
>> item = list.remove();
>> disp(item)
1
>> item = list.remove();
>> disp(item)
2