-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloorlist.m
More file actions
31 lines (27 loc) · 907 Bytes
/
floorlist.m
File metadata and controls
31 lines (27 loc) · 907 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
function floorlist
floorlist{1} = {'1' '2'};
floorlist{2} = {'1' '2' '3'};
floorlist{3} = {'g' '1' '2' '3' '4' '5'};
floorlist{4} = {'1' '2' '3' '4'};
floorlist{5} = {'b' '1' '2' '3'};
floorlist{6} = {'g' '1' '2' '3'};
floorlist{7} = {'b' '1' '2' '3' '4'};
floorlist{8} = {'g' '1' '2' '3'};
floorlist{9} = {'g' '1' '2' '3'};
floorlist{10} = {'b' '1' '2' '3' '4' '5'};
floorlist{11} = {'1' '2' '3'};
floorlist{12} = {'1' '2' '3' '4'};
floorlist{13} = {''}; %not sure what the issue is, but no coords
floorlist{14} = {'1' '2' '3' '4'};
floorlist{15} = {'g' '1' '2' '3'};
floorlist{16} = {'g' '1' '2' '3'};
floorlist{17} = {'g' '1' '2' '3'};
floorlist{18} = {'g' '1' '2' '3'};
floorlist{19} = {''};
floorlist{20} = {''};
floorlist{21} = {'d' '1' '2' '3'};
floorlist{22} = {'g' '1' '2' '3'};
floorlist{23} = {''};
floorlist{24} = {'g' '1' '2'};
save floorlist
end