2009-08-22 06:23:24 +08:00
|
|
|
% A zero delta configuration
|
|
|
|
|
function c = createZeroDelta()
|
|
|
|
|
v_x1 = [0; 0];
|
|
|
|
|
v_x2 = [0; 0];
|
|
|
|
|
v_l1 = [0; 0];
|
2009-11-13 04:41:05 +08:00
|
|
|
c = VectorConfig();
|
2009-08-22 06:23:24 +08:00
|
|
|
c.insert('x1', v_x1);
|
|
|
|
|
c.insert('x2', v_x2);
|
|
|
|
|
c.insert('l1', v_l1);
|
|
|
|
|
end
|