-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathloadICUBWL.m
More file actions
executable file
·34 lines (27 loc) · 961 Bytes
/
loadICUBWL.m
File metadata and controls
executable file
·34 lines (27 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
function [ WL ] = loadICUBWL()
%LOADICUBWL iCub whitelist configuration function
% Custom function for robot whitelist configuration. Position in
% whitelist logical matrix corresponds with the position in kinematics matrix.
% Value 1 means the parameter will be calibrated.
%OUTPUT - WL - whitelist structure
WL.head = zeros(4,4);
WL.leftArm = [0, 0, 0, 0;
1, 1, 1, 1;
1, 1, 1, 1;
1, 1, 1, 1;
1, 1, 1, 1;
1, 1, 1, 1;
1, 1, 1, 1;
1, 1, 0, 1];
WL.rightArm = [0, 0, 0, 0;
1, 1, 1, 1;
1, 1, 1, 1;
1, 1, 1, 1;
1, 1, 1, 1;
1, 1, 1, 1;
1, 1, 1, 1;
1, 1, 0, 1];
WL.leftEye = ones(2,4);
WL.rightEye = ones(2,4);
WL.torso = zeros(2,4);
end