Code covered by the BSD License  

Highlights from
Sim.I.am

image thumbnail
from Sim.I.am by Jean-Pierre de la Croix
A MATLAB-based educational bridge between theory and practice in robotics.

mcodekit.list.dl_list_node
classdef dl_list_node < handle

% Copyright (C) 2012 Jean-Pierre de la Croix
% see the LICENSE file included with this software
    
    properties
        key_
        next_
        prev_
    end
    
    methods
        function obj = dl_list_node(key)
            obj.key_ = key;
            obj.next_ = [];
            obj.prev_ = obj.next_;
        end
    end
    
end

Contact us