Save table with cell arrays in csv

6 ビュー (過去 30 日間)
Oliver Steiner
Oliver Steiner 2023 年 2 月 1 日
コメント済み: Image Analyst 2023 年 2 月 3 日
Hey! I created a table with cell arrays. In each cell is data from one condition. When I want to convert the table into csv this does not work. The table now looks like this:
"
time0 correct0 time1 correct1 time10 correct10
______________ ______________ ______________ ______________ ______________ ______________
{ 69×1 double} { 69×1 double} { 99×1 double} { 99×1 double} {127×1 double} {127×1 double}
"
In excel in shoul look like this:
"
time0 correct0 time1 correct1 time10 correct10
______________ ______________ ______________ ______________ ______________ ______________
{1,2,3......53,35} {1,2,3......53,35} {1,2,3......53,35} {1,2,3......53,35} {1,2,3......53,35} {1,2,3......53,35}
"
So that in each cell are the data from the array seperated by a comma.
Many thanks!
Best
Oliver

採用された回答

Stephen23
Stephen23 2023 年 2 月 2 日
編集済み: Stephen23 2023 年 2 月 2 日
T = load('table.mat').table % !!! do NOT use "table" as a variable name !!!
T = 18×6 table
time0 correct0 time1 correct1 time10 correct10 ______________ ______________ ______________ ______________ ______________ ______________ { 69×1 double} { 69×1 double} { 99×1 double} { 99×1 double} {127×1 double} {127×1 double} {140×1 double} {140×1 double} {131×1 double} {131×1 double} {141×1 double} {141×1 double} {100×1 double} {100×1 double} {117×1 double} {117×1 double} {110×1 double} {110×1 double} { 41×1 double} { 41×1 double} { 60×1 double} { 60×1 double} { 55×1 double} { 55×1 double} {134×1 double} {134×1 double} {132×1 double} {132×1 double} {136×1 double} {136×1 double} {126×1 double} {126×1 double} {126×1 double} {126×1 double} {126×1 double} {126×1 double} { 61×1 double} { 61×1 double} { 85×1 double} { 85×1 double} { 96×1 double} { 96×1 double} { 52×1 double} { 52×1 double} { 65×1 double} { 65×1 double} { 73×1 double} { 73×1 double} {104×1 double} {104×1 double} {125×1 double} {125×1 double} {121×1 double} {121×1 double} { 74×1 double} { 74×1 double} { 68×1 double} { 68×1 double} { 54×1 double} { 54×1 double} { 97×1 double} { 97×1 double} { 95×1 double} { 95×1 double} {111×1 double} {111×1 double} { 70×1 double} { 70×1 double} { 74×1 double} { 74×1 double} { 72×1 double} { 72×1 double} {120×1 double} {120×1 double} {125×1 double} {125×1 double} {125×1 double} {125×1 double} {106×1 double} {106×1 double} { 99×1 double} { 99×1 double} {110×1 double} {110×1 double} {118×1 double} {118×1 double} {104×1 double} {104×1 double} {122×1 double} {122×1 double} {115×1 double} {115×1 double} {116×1 double} {116×1 double} {122×1 double} {122×1 double}
F = @(v)strjoin(string(v),',');
T = convertvars(T, @iscell, @(c)cellfun(F,c))
T = 18×6 table
time0 correct0 time1 correct1 time10 correct10 __________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ _________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ __________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ ___________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________ "132.08,279.17,174.58,225.42,278.75,276.25,180.83,184.17,131.67,194.17,250.83,-1344.58,157.5,-1331.67,279.58,-1325.83,-1315.83,285.42,237.5,178.75,328.33,164.58,164.58,219.17,318.75,220,325.83,-1330.42,314.17,310.42,217.08,161.25,-1343.33,-1354.17,193.75,186.67,135.42,231.25,-1361.67,191.25,187.5,278.75,270.83,120.42,220.83,267.92,172.5,120,171.25,121.25,-1385.42,213.33,115.42,215.42,229.58,131.25,174.58,-1382.5,214.17,-1390.42,197.92,195.42,149.17,101.67,103.33,153.75,-1394.58,258.75,268.75" "1,0,1,1,1,0,0,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1" "282.08,230,178.75,123.75,121.25,221.67,-1376.25,224.58,130.42,-1374.17,278.33,227.92,177.5,132.92,285,-1355.83,-1350.42,149.58,-1350.42,298.75,252.5,299.58,205,155.42,152.5,-1355,240,182.92,181.25,184.58,-1367.08,-1370.83,131.67,275.83,282.5,-1364.58,135.83,245,133.75,132.5,229.58,277.5,269.58,169.17,118.33,-1380.42,162.5,211.25,212.08,164.17,165,-1382.5,261.67,210.42,205.42,-1395.42,251.25,200,95.83,144.17,245,144.17,197.5,98.75,247.08,247.5,144.58,-1402.5,96.25,-1403.33,253.75,103.75,-1398.75,201.25,149.58,201.25,242.08,90,245.42,145.42,197.08,250,99.58,-1401.67,241.25,90,192.5,146.67,198.75,194.58,245,248.33,-1401.25,152.92,96.25,97.08,150.83,205.83,-1393.75" "1,1,0,1,1,1,1,1,0,1,1,1,1,0,1,0,0,1,1,1,0,1,1,0,1,1,1,1,0,1,0,0,1,1,1,0,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,0,1,1,1,1,1,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1" "184.58,280,228.33,174.17,170,121.25,123.33,174.58,-1368.33,125.42,127.08,226.25,225,-1374.58,281.25,233.33,182.5,184.58,286.25,237.5,-1365,235.83,-1366.25,282.92,282.92,-1368.33,279.17,126.67,120,-1380.83,218.75,217.92,262.08,110.83,109.58,107.92,107.5,107.92,157.92,256.25,-1395.83,154.58,155,205,257.08,162.08,162.08,161.67,-1387.92,263.75,120.83,221.67,272.92,120.83,170,117.92,270,220,217.08,-1388.33,262.5,260.83,209.58,-1392.92,211.67,-1396.67,247.5,146.67,147.5,-1403.33,148.75,147.92,248.75,-1398.75,101.25,147.92,147.92,100.42,201.67,97.08,-1403.33,145.83,195.42,246.25,-1406.25,94.58,194.17,92.92,140,189.17,187.92,238.33,238.33,137.08,-1415.83,234.58,-1415.83,-1417.08,-1417.08,83.75,232.08,177.08,227.08,177.08,180.83,180.42,231.67,132.92,132.5,232.92,82.92,181.67,184.58,135.42,-1415.42,85,137.08,84.17,85.42,135,-1416.67,86.67,-1414.58,234.58,132.92,-1420,-1421.25" "1,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,0,1,1,1,1,0" "107.08,267.08,-1380,268.75,263.33,264.58,263.33,-1388.33,212.92,114.58,162.92,-1386.25,113.75,164.58,165,113.75,122.5,222.5,123.75,170,227.08,177.92,-1370.83,-1370,280.42,230.42,228.33,-1372.5,233.33,133.33,284.17,233.75,235.42,193.33,-1365.42,141.25,137.08,133.33,190.42,-1364.17,177.08,131.67,-1372.08,235.42,286.67,295,202.08,307.5,200.42,257.5,-1343.75,-1344.17,312.92,-1349.58,250.42,148.75,141.67,193.75,251.25,298.33,203.33,-1357.08,132.5,224.58,268.33,-1381.67,211.67,162.5,261.25,-1397.92,250.83,-1400,-1391.67,216.67,218.33,175.83,127.5,176.67,122.92,231.25,133.33,-1368.33,181.25,281.67,281.25,-1369.17,288.75,147.08,246.67,295.83,-1354.58,246.25,-1362.08,240,140.42,240.42,-1365.83,284.58,228.33,127.92,-1372.5,179.58,285.83,177.5,122.5,171.67,172.08,115,172.08,-1380.42,262.5,260.42,113.33,265.42,164.58,160.42,-1390,161.25,212.92,-1391.67,-1397.08,200,100,247.5,97.5,198.33,-1402.5,99.17,141.25,91.25,-1411.25,-1413.33,182.5,79.17,137.5,238.33,187.5,136.25,236.25,187.08" "1,1,1,1,1,1,1,0,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,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,1,1,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1" "258.33,108.33,157.92,-1390,205,153.33,150.83,151.67,-1397.92,200.42,252.5,201.25,252.5,110.83,112.5,215,-1386.25,113.33,264.17,215.83,262.92,-1387.5,162.5,-1390,109.58,110.42,159.17,219.17,-1382.08,-1391.25,213.75,162.92,164.58,263.75,-1388.75,262.5,112.08,212.08,263.33,222.92,126.25,-1373.33,280,280,-1371.67,122.92,124.58,-1380.83,177.92,171.25,120.42,218.75,167.92,223.75,121.67,221.25,272.08,-1387.5,168.75,127.08,174.58,229.58,-1369.17,184.17,181.25,277.92,279.17,271.25,-1380,270.83,121.67,-1384.17,215,-1385.42,211.67,114.58,215,117.08,212.92,264.17,214.17,117.5,217.08,-1384.58,-1385.42,-1385.83,122.5,-1376.25,180.83,181.25,-1375.83,124.58,272.08,173.33,229.58,130,230,-1369.17,280,182.08,130,273.33,176.67,223.75,119.58,217.92,116.25,164.17,-1395,157.92,112.92,106.67,-1395.42,156.67,254.58,105.42,153.33,-1397.08,255.42,-1396.67,197.92,101.25,251.25,251.25,198.33,150,251.25,249.17,-1400.42,192.5,-1409.17" "1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,0,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,0" "107.08,-1390.42,-1391.67,207.92,101.67,153.33,252.08,98.75,199.17,100,196.25,149.17,-1401.25,100.42,207.92,-1389.58,-1389.58,260.83,158.33,260,-1386.25,173.75,180.83,289.58,146.67,247.08,255.83,305.42,214.17,-1335.83,163.75,166.25,-1336.67,263.33,155,311.25,310.42,-1341.67,208.33,307.08,258.33,-1350,-1357.92,192.92,237.5,237.92,138.75,286.25,181.67,183.33,292.92,292.92,-1355.42,248.33,197.92,138.33,145.42,196.25,146.25,191.67,-1357.5,285.42,186.67,137.5,-1362.08,298.33,293.33,290.83,235,134.58,235,189.58,189.17,137.92,-1360.83,297.08,149.17,248.33,195.83,143.75,250,241.25,289.58,238.33,-1362.08,135,132.92,-1369.58,221.67,219.17,-1382.08,274.58,275,-1381.67,264.17,163.33,115.42,117.92,-1391.25,262.08,203.33,155.42,207.08,262.92,164.58,165,265,-1386.67,214.58,117.92,173.33,173.33,-1377.08,-1378.33,168.75,165,263.33,264.58,-1389.58,210.83,-1391.25,257.08,-1402.5,146.25,246.25,97.5,247.5,195.83,96.25,87.08,179.17,177.5,177.08,127.08,180,129.58,80.42,80.42,230.83,80.42,-1420" "1,0,1,1,1,1,1,0,1,1,1,0,1,1,0,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1" "217.5,166.67,114.58,-1436.67,63.75,61.67,-1438.33,-1437.92,111.67,215,117.08,-1433.33,-1432.5,68.33,157.92,156.67,106.25,106.67,206.67,58.75,157.92,207.08,206.67,106.25,156.25,205.42,151.25,-1451.67,147.08,46.67,-1455.83,42.08,89.17,140,89.17,88.75,-1458.75,140.83,59.58,112.92,215.42,163.33,164.17,113.75,164.17,61.67,-1440.83,208.33,154.17,-1450,51.67,102.5,102.08,110.42,210.83,211.25,-1437.08,163.75,217.5,216.67,-1437.08,210.42,-1439.17,62.5,112.5,113.75,202.08,-1447.5,102.92,51.25,200,152.08,151.67,99.58,152.92,112.08,162.92,64.17,164.58,-1433.75,118.75,-1433.33,217.5,-1431.25,219.17,117.92,167.08,67.92,-1429.17,170.83,213.33,112.08,115,61.67,210,-1430.42,68.75,127.92,80,-1419.58" "1,1,1,1,1,1,0,0,1,1,1,0,0,1,0,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,0,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,1,0,1,0,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1" "220.42,72.08,220.42,116.67,216.25,-1433.33,63.75,212.92,62.5,62.08,112.92,-1437.08,163.75,114.17,-1435.83,66.67,167.5,154.58,102.08,148.75,95,44.17,-1454.17,196.67,147.5,146.67,-1450.42,98.75,-1447.5,-1446.25,202.08,50.42,152.08,153.33,53.75,102.5,200.83,50.42,50,99.17,49.17,202.08,-1445,159.58,59.58,-1439.58,110.42,60.42,210.42,207.92,-1443.75,55.83,155.42,204.17,102.08,102.92,151.25,100.42,48.75,48.33,145.83,94.58,44.17,142.92,-1457.08,-1457.92,192.5,144.17,193.33,191.25,41.67,-1457.5,41.25,141.67,-1459.58,90.42,-1460,140.42,191.25,-1454.17,45.42,44.58,96.67,97.08,198.33,197.92,151.25,152.5,-1446.67,152.5,102.92,110,109.58,-1440,159.17,208.33,-1442.5,56.67,155.83,206.25,203.75,53.75,152.5,102.5,202.5,152.5,102.92,95.42,-1454.58,47.08,-1453.75,189.17,88.33,-1460.83,39.17,87.92,40" "0,1,1,1,1,0,0,1,1,1,1,0,1,1,1,1,1,1,0,0,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,0,1,0,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1" "217.5,162.92,112.08,211.25,-1441.25,207.08,56.67,105.83,155.42,154.58,205.83,106.25,206.67,193.33,40.42,38.33,90,40.83,42.08,-1457.92,91.67,-1458.33,-1455.83,144.58,-1456.25,92.08,91.25,142.08,143.33,192.92,195,-1463.33,188.75,46.67,201.25,198.75,-1450.83,148.75,105.42,-1444.58,206.25,55.83,105.83,105.83,-1445.83,155.42,-1445,154.58,103.33,103.33,52.92,200,-1455,95,145,45.42,195,47.5,146.25,195.42,45.42,146.25,94.58,-1453.33,-1455.42,144.17,42.08,140.83,91.67,139.58,188.75,-1459.58,192.08,142.08,92.92,42.92,192.08,-1457.08,-1456.67,94.17,195.42,45.42,146.25,97.08,147.92,199.58,98.75,148.33,-1452.08,47.5,153.33,203.75,205,-1444.58,206.25,156.25,56.25,205.42,105.83,-1444.58,56.25,55.83,155.42,105,205.42,-1443.33,108.33,60,-1446.25,-1446.67" "1,1,1,1,0,1,0,1,1,1,1,1,1,1,0,1,1,0,1,0,1,0,0,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,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,1,1,1" "-1367.92,-1365.83,232.92,-1370.83,127.5,178.75,267.5,160.83,209.58,265,115,174.17,-1391.67,260.83,206.67,-1385,182.08,125.83,269.58,-1370,272.5,169.17,220.83,164.58,-1386.67,103.75,155.83,252.08,148.33,-1402.5,197.08,96.67,107.5,260.83,207.08,155.83,255.83,154.17,-1399.17,250.83,120.83" "0,0,0,0,0,0,1,0,0,1,0,0,1,1,1,1,0,1,0,1,1,1,0,0,1,1,1,0,1,0,1,1,1,0,0,1,0,1,0,0,1" "222.08,170.83,-1378.75,122.92,279.17,-1375.83,-1382.92,116.25,160.42,210,258.75,-1390,266.25,107.92,-1394.58,207.08,166.67,260.83,278.75,284.17,289.58,240.42,136.25,282.5,155.42,114.58,160.83,203.33,201.67,-1397.5,260.83,-1387.08,-1387.08,254.58,-1396.67,253.33,195.83,146.67,-1404.58,140.42,189.58,-1412.5,137.92,250,105.42,279.58,150,197.5,197.08,191.25,186.67,227.5,118.33,270.42,-1387.08,211.67,109.17,-1397.92,-1390,210" "0,1,0,1,0,1,1,1,1,1,0,1,0,1,0,0,1,0,0,1,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,1,0,0,1,0,0,0,1,0,1,1,0" "174.58,170.42,270.83,269.17,262.5,112.08,204.58,100.42,216.25,-1379.17,129.17,136.25,284.17,220.42,270.42,128.75,228.75,230,-1372.92,230.83,180,124.17,164.58,-1386.25,-1388.33,107.92,-1393.33,100.42,103.33,155.83,209.58,259.17,-1397.92,199.58,-1402.92,147.5,247.5,255.42,107.5,-1384.17,167.08,166.25,113.75,215.42,107.08,206.67,202.08,241.25,92.08,142.08,190,195.83,147.08,213.33,113.75" "1,1,0,1,1,0,0,1,1,1,1,1,0,1,0,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,0,0,1,1,1,0,1,0,0,0,1,0,0,1,1,1,1,1,0,1,0,1,1,1" "-1412.5,90,242.08,-1405.42,143.75,-1409.17,144.58,240.42,187.5,240.42,89.58,-1410,190.83,248.75,100,-1400,96.67,196.25,97.5,194.17,94.17,243.75,242.08,202.5,153.75,152.92,205.42,-1385.42,-1385.83,217.08,215.83,159.58,-1389.58,260.83,213.33,265.83,272.5,173.33,-1375.42,176.25,275.83,-1381.25,118.33,166.67,221.67,220,117.5,109.58,110,158.33,256.67,203.75,102.08,254.17,-1397.08,101.25,143.75,145.83,-1403.33,243.75,94.17,197.08,92.92,141.67,240.42,188.33,95.83,245.42,196.67,198.75,94.17,143.75,95,194.58,247.08,247.92,-1403.33,97.92,196.25,147.5,150.83,-1395.42,255.83,155.83,97.5,147.92,-1405,-1408.33,190.83,90.83,140.83,90,-1415.83,234.17,242.08,189.58,87.92,190.83,144.58,-1406.67,239.17,187.08,-1415.83,233.33,83.75,187.08,237.92,141.25,-1413.33,241.25,237.5,229.17,130.83,130.42,127.5,122.92,-1426.25,175.42,198.33,-1400.42,249.58,198.33,247.08,199.17,-1400,102.08,100,99.17,150.42,-1398.75,-1398.33,100.42,-1404.17,245.42" "0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,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,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1,0,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,0,0,1,1,1,1,1" "87.92,239.58,240.42,88.75,139.58,240.42,90.83,141.25,185.83,181.67,235,181.25,237.5,136.67,-1412.92,140.42,88.33,189.58,-1413.33,139.17,190,-1407.92,203.33,102.92,-1398.33,-1398.33,-1400.42,110,169.58,-1383.75,166.67,162.5,159.58,165,211.25,109.58,209.58,112.08,208.75,107.08,256.67,252.5,-1395.83,-1393.33,-1388.75,213.33,-1401.67,109.17,259.17,205.42,156.25,257.08,269.17,-1382.5,180,177.92,273.75,274.58,-1378.33,168.75,-1382.92,214.58,115,219.17,115.42,-1379.58,170.83,117.92,269.17,268.33,108.75,-1389.58,200.83,200.42,-1401.25,196.25,197.92,107.08,257.5,257.5,-1394.17,-1402.08,-1404.58,141.25,244.17,245,195.42,143.75,246.67,95,-1405.42,-1415.42,187.5,-1410.42,139.58,-1411.67,79.17,183.33,139.58,146.67,103.75,201.25,100.83,100,198.33,145.83,245,154.17,214.58,-1384.58,213.33,262.5,114.58,212.5,210.42,162.92,-1392.92,156.25,243.33,142.5,141.25,241.25,242.92,194.58,-1406.25,-1406.25,196.25,-1403.75,247.5,-1401.67,100.42,149.17" "1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,0,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1" "137.08,186.25,-1413.33,89.58,140,247.92,151.25,96.67,242.5,195.42,95.42,197.92,98.33,250.83,100.83,-1401.25,201.67,100.83,-1398.75,153.75,-1397.5,258.33,256.25,252.92,154.17,155.42,203.75,-1398.33,160.42,-1392.5,106.25,207.08,207.92,-1395,-1390.42,161.25,265,-1385.42,-1385.42,215.42,254.17,107.08,208.75,259.17,109.17,258.75,159.58,150.83,101.25,249.17,149.58,98.75,247.08,194.58,-1405.42,137.5,187.92,246.67,198.33,103.75,160.42,112.92,262.08,262.08,110.83,160,-1391.67,110,110.42,211.25,219.17,271.67,-1375.83,173.75,224.58,-1377.5,214.58,267.92,-1392.92,-1404.58,145,145,145,96.67,248.75,245.42,97.92,197.08,-1413.33,-1416.67,81.67,233.33,133.75,182.5,232.92,77.92,230,-1418.75,-1420.42,178.75,180,230,132.92,87.92,136.25,-1409.17,191.67,-1411.25,90,190.42,140.83,90.42,-1409.58,244.17,142.08,144.58,-1405.83,-1404.58,-1406.25,93.33,92.08,238.33,133.33,87.92,235,82.5,234.17,184.58,185,183.75,-1417.92,132.08,180,130.42,-1420.83,182.92" "1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,0,1,1,1,0,1,1,0,1,1,1,1,1,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,0,1,1,1,1,0,1,1,0,1,1,0,1,0,1,1,1,1,1" "-1402.5,-1402.92,97.92,-1402.92,98.33,248.75,198.33,147.5,194.58,95,245,193.75,134.17,-1416.67,132.92,181.67,-1416.25,-1412.92,238.75,141.25,241.67,92.5,192.5,141.25,140,90.83,-1414.17,235,185,184.17,-1418.75,230.83,227.5,127.5,225.42,-1430.83,72.5,123.33,223.75,72.5,225.42,81.67,183.33,183.33,-1415.42,186.67,236.67,85.42,-1417.08,182.92,134.58,234.58,82.08,182.08,-1417.92,231.67,128.75,174.58,75.42,125.83,-1420,230.42,80.42,-1421.25,133.33,233.33,236.25,89.58,138.33,186.25,87.92,188.33,-1413.75,84.58,-1417.92,185.42,85.42,-1415,131.67,131.25,130,80.42,178.33,226.25,-1425,127.5,82.08,131.25,230.83,82.92,236.67,137.5,235.42,-1415.42,-1416.25,232.5,83.33,182.92,183.33,-1418.75,231.25,231.67,81.67,182.92,131.67,-1422.08,174.17,124.17,175.83,-1425.83,222.08,73.33,74.58,75.42,125.83,130,-1420,229.58,180.83,81.67,132.92,182.92,83.33,139.58,188.33,-1410.83" "0,0,1,0,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1" "245.83,145.42,150,197.08,-1400.83,98.33,250,200.83,-1399.17,194.58,194.58,236.67,-1410.83,90,135,191.67,149.58,-1398.75,200,-1400.42,95.83,245.83,100.42,151.25,152.92,-1396.67,-1398.75,151.25,-1397.08,191.67,85.83,-1416.67,233.33,77.92,227.92,129.58,182.08,130.83,229.17,228.33,177.08,235.42,185,87.5,187.92,89.17,-1410.42,140.42,241.25,187.92,237.92,187.5,239.17,86.67,185.83,-1416.67,82.08,128.33,234.17,232.08,181.25,232.08,134.58,184.17,-1415,85.42,134.17,-1418.75,131.25,81.25,80.42,-1418.75,232.5,236.67,135.42,-1412.92,178.33,129.58,-1421.67,178.33,226.25,225.83,174.58,225,77.92,-1422.08,177.08,178.75,230,80.83,79.17,76.67,75.83,-1425,173.75,-1428.75,120.42,70.42,-1432.5,69.17,-1431.25,-1432.08,170,68.75,70.83,170,168.33,166.67,116.67,116.25,-1434.17,216.25,215.42,165.42,119.17,220.83,174.58,125.83,-1421.25,127.92,80,-1421.67,231.67,130.42,230.42,83.75" "1,1,1,0,1,1,1,1,0,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,0,1,1" "-1402.5,244.58,194.17,142.5,141.25,92.08,-1408.75,-1408.75,192.92,239.58,187.5,77.92,224.58,120,118.75,125,171.25,-1430.83,221.25,67.5,-1435.42,213.75,64.58,217.92,-1431.67,220,-1441.25,160,213.33,116.25,216.67,68.75,169.58,-1434.17,123.75,75.83,75.42,128.33,229.58,180,-1422.5,78.33,-1424.17,75.42,175.42,123.33,122.5,224.17,67.5,167.5,-1434.58,117.5,167.08,116.67,-1432.92,-1435.42,165.42,68.75,70,223.33,173.33,76.25,76.67,-1423.75,-1423.33,227.08,227.08,127.5,80,128.33,77.08,-1425,175,124.58,224.58,-1429.58,69.17,67.08,115.42,114.58,212.92,-1440.42,62.08,213.75,164.58,217.08,162.92,211.25,211.25,112.5,163.75,-1438.33,163.33,-1439.17,111.67,62.5,-1440.83,210,161.67,113.33,110.42,109.17,-1442.92,-1445.42,208.75,-1442.5,108.75,58.33,58.33,57.5,160,59.17,61.67,212.08,115,118.75,-1430.83,217.5,166.67,66.25,-1434.58,173.75,-1421.67,184.58,188.33,241.67" "0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,0,0,1,1,1,1,1,0,1,0,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,1,1,1,1,0,0,1,1,1,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1" "-1377.92,174.17,226.67,226.67,276.25,-1375.42,-1374.17,275,-1375,265,265,171.25,128.33,234.17,244.17,150,-1344.17,-1344.17,165.83,272.08,315.83,255.42,206.67,296.25,200.42,205.83,147.08,267.92,108.33,100.83,156.25,255.83,-1384.17,117.5,267.92,-1378.75,175.42,295.42,144.58,290,-1365,235.42,130.42,-1369.17,155.83,257.92,-1392.92,203.75,-1397.5,153.75,261.67,-1385,270,120.83,170.42,-1377.5,215.83,116.67,117.08,-1385.83,162.08" "1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1" "270,218.75,216.67,172.5,125,174.17,175,282.08,231.67,134.17,232.5,134.58,235,187.08,-1366.67,-1369.17,132.92,-1377.92,-1378.33,126.67,280.42,280.42,284.58,143.33,242.92,302.5,204.17,160.83,-1348.33,143.33,139.58,228.33,181.25,230.83,122.92,-1383.33,258.33,262.92,116.25,222.08,134.17,186.67,237.5,237.5,-1360.42,282.92,222.92,227.08,182.5,226.67,122.5,-1378.75,-1392.5,260.42,262.08,213.33,165,-1400.42,108.75,269.17,219.58,169.17,170.83,270.42,116.67,-1384.58,-1387.92,264.17,212.92,262.5,112.92,167.92,166.67,-1388.33,118.33,257.92,197.92,100.42,101.25,199.58,253.75,-1398.75,203.33,152.08,152.92" "1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,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,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1" "220,225.42,182.5,-1366.25,282.5,-1367.08,282.08,-1365.42,284.58,134.58,127.5,278.75,-1379.17,-1384.17,178.75,230.83,132.08,132.08,142.5,195.42,296.25,-1350.42,196.67,-1353.33,-1345,205,-1358.75,180.83,285.42,277.5,130,221.67,-1375.83,273.75,-1379.17,171.25,169.58,111.67,263.33,265.42,215.83,-1389.58,153.33,201.67,148.33,-1405,193.33,153.75,252.08,105.42,155,-1395.42,105,-1396.25,-1401.25,256.67,205.42,207.08,157.92,101.25,194.17,144.17,195.42,93.33,94.58,243.75,-1406.25,197.08,97.08,89.58,190,190.83,-1408.75,244.17,94.17,-1405.83,-1410.83,136.25,138.75,-1413.33,87.08,137.5,-1419.17,130,231.25,181.67,235,185.83,-1415.83,82.08,142.5,240.83,93.33,244.17,200.83,200.83" "1,1,0,0,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,0,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,0,1" "268.33,119.17,269.58,260.83,257.08,151.67,-1386.67,116.25,123.33,-1376.67,240.83,191.67,255.42,250,311.25,204.58,302.08,249.17,196.25,-1359.17,135.42,-1393.33,107.5,263.33,161.67,114.17,217.08,215.83,119.58,265.83,165.83,270.83,240,-1359.17,-1361.67,188.33,134.17,291.25,292.5,235.42,125.83,-1372.5,-1370.42,-1375,172.5,158.33,100.42,103.33,-1397.5,157.08,159.58,213.75" "0,0,1,1,0,1,1,0,1,0,0,0,1,1,0,0,1,1,1,0,0,1,1,0,1,0,0,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,0,1,1,0,1,0,0,1" "162.92,-1389.58,-1389.17,258.33,260,-1391.25,208.75,200.83,-1405.42,245,145.42,239.58,240.83,84.58,186.25,188.75,191.25,-1407.08,92.92,91.67,147.08,244.58,96.67,247.5,-1395.42,101.67,200.83,-1392.08,215.42,175.42,172.92,271.25,171.67,-1382.08,214.17,-1385.42,114.17,-1398.75,98.75,250.83,209.17,208.75,-1386.25,162.5,264.17,211.67,267.5,-1379.58,176.67,-1375.83,172.92,274.58,115.42,156.25,108.33,202.5,179.58,240,188.33,238.75,250.83,259.58,115.83,158.33,158.33" "0,0,1,0,0,0,1,1,1,1,0,1,1,1,0,0,0,1,0,1,0,0,1,0,1,0,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,0,1,0,0,1,1,0,1,1,1,0,1,0,1,1,1,1,0,1,1,0,0,1" "271.67,-1381.67,218.33,117.92,227.5,-1370,219.17,267.08,163.75,169.58,215.42,115.83,115,-1381.67,111.67,160.83,-1383.33,110,211.67,211.67,214.17,-1385.83,215.42,119.58,165.42,162.92,211.67,-1385,267.92,117.92,268.33,-1383.33,112.08,258.33,110.83,158.33,106.67,-1402.92,139.17,189.58,189.17,88.33,236.25,235.42,132.08,132.92,180.83,83.33,82.5,231.67,192.92,194.58,-1405.42,108.75,-1388.33,264.17,262.5,110.42,259.17,-1388.33,208.75,105.42,97.92,102.08,206.67,-1393.33,154.17,-1395,200,-1400.42,148.75,147.5,-1407.5" "0,1,0,0,0,0,1,0,0,1,1,1,1,0,0,0,0,1,1,1,0,1,1,0,0,1,0,0,0,1,0,1,1,1,1,0,1,1,1,0,1,0,0,1,1,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,0,1,0,0,0,0,0" "215,314.58,313.75,-1294.58,354.58,254.58,247.08,249.58,-1295.42,-1295.83,-1296.67,357.5,303.75,206.25,253.75,359.17,264.17,312.5,-1286.67,218.33,315.42,216.67,366.67,365,366.25,312.5,251.25,345.42,-1303.75,242.08,295.42,283.75,232.92,-1327.08,221.67,-1333.75,318.33,167.5,271.25,223.75,174.17,275.83,-1326.67,322.92,321.25,170.83,221.67,-1321.67,328.75,336.67,334.17,280.42,231.67,179.58,281.67,235,-1317.08,-1318.75,185,185,285,187.08,287.08,338.75,-1317.5,324.58,225,182.92,231.25,280.42,329.17,-1326.67,260.83,-1333.33,269.17,306.25,310.42,213.33,263.33,167.92,168.75,317.92,266.25,216.67,-1336.67,217.5,272.5,271.67,227.08,278.33,217.5,326.25,219.17,169.17,-1323.75,-1323.75,272.92,320,317.5,150.83,200.42,247.5,202.08,257.92" "1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,0,1,1,0,1,0,1,1,1,1,1,0,1,1,0,1,1,0,1,0,1,1,1,1,0,1,1,0,1,1,1,0,0,1,1,0,1,1,1,0,1,1,0,1,1,1,0,1,0,1,1,0,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,0,0" "-1283.75,366.67,-1283.75,207.08,343.33,240,190,-1303.33,349.58,242.5,-1305,192.92,197.5,302.08,252.08,239.58,349.58,299.17,253.75,360,265,310.83,214.58,262.08,203.75,352.5,197.92,-1302.08,194.17,298.33,-1300.42,351.25,247.5,342.5,-1307.5,190.83,287.08,187.08,242.5,-1308.75,292.5,346.67,239.58,290.42,244.17,-1307.5,289.17,185.83,232.92,280.83,231.67,325.42,-1328.75,162.5,258.33,-1340,207.08,306.25,307.08,155.83,-1349.17,151.67,150.42,203.75,303.33,312.08,262.92,-1331.67,217.5,271.25,224.17,177.08,281.67,332.08,-1317.92,337.08,335.83,236.25,342.5,190.83,-1314.58,-1320,178.33,175,-1329.17,222.5,167.92,172.5,267.5,271.67,214.58,-1337.92,209.58,304.58,260.42,256.67,160.42,264.58,-1335.83,219.58,318.75,316.25,-1337.08,167.08,220.42,-1328.75,228.33,267.5,324.58,274.17,318.33,169.17,271.25,-1325,322.08,-1329.58,-1335.42,315.83,167.92,170.42,209.17,259.17,-1340.83,158.33,265" "1,1,0,1,0,1,0,1,1,1,1,1,1,0,1,1,0,1,0,0,1,1,0,1,1,1,0,0,0,1,0,1,1,0,1,0,0,0,1,1,1,1,1,1,1,0,1,1,1,0,0,1,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,1,1,0,1,0,1,0,0,0,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,0,0,1" "371.25,264.58,-1290,355.83,-1292.92,354.17,-1300.83,298.33,349.17,298.75,-1298.75,-1296.67,202.08,242.92,238.75,245,197.92,200,199.58,200.83,354.58,352.5,209.58,312.08,309.58,-1297.08,352.5,-1303.75,285.83,240.83,249.58,-1307.92,294.17,339.58,286.25,232.08,177.5,230.83,319.17,-1345,202.92,307.92,159.58,153.75,249.58,-1350,295.83,145,-1361.25,190,190,-1360.42,181.67,-1367.92,287.5,241.67,145,247.08,244.58,143.75,299.58,147.5,150.83,203.75,-1349.17,200.42,251.67,300.83,252.92,307.5,-1337.5,316.67,320.42,275,176.67,325,227.08,328.33,325,-1323.33,-1324.58,324.58,171.67,317.08,259.17,151.25,147.5,192.5,238.33,135.83,132.08,187.08,189.58,189.17,-1360.83,288.33,239.17,284.17,131.67,183.33,-1360.83,288.75,142.92,140.42,-1359.17,191.67,-1360,237.92,137.5,-1357.08,195,238.33,194.17,245,252.5,-1349.58,297.92,247.5,202.92,-1341.67,210.42" "1,0,0,1,1,1,0,1,1,1,0,0,1,1,1,0,0,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,1,1,1,0,0,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,0,0,0,0,1,0,1,1,0,1,1,1,0,1,1,1,0,0,0,0,0,0,1,0,1,0,0,1,1,1,1,1,0,0,1,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,0,1,1,1,0,1,1,1,1,0,0,1,0,1" "247.5,146.67,243.33,-1352.5,195.83,251.25,302.92,-1345.42,314.58,314.58,-1333.33,318.33,217.08,216.67,212.92,-1333.33,163.75,211.25,-1340,305,248.33,201.25,298.33,197.92,254.58,207.5,249.58,143.75,245,245,292.08,140.42,290.42,-1360.42,144.58,192.5,144.58,-1354.17,241.25,290,300.42,-1347.92,302.5,-1345,203.75,-1347.08,152.08,154.17,156.67,155.42,-1352.08,244.58,291.67,242.08,140.83,173.75,169.58,273.75,269.58,-1387.08,215.42,-1383.75,110,-1390.83,-1392.08,-1400.83,150,200,99.58,-1395,102.08,-1407.92,-1402.5,-1392.5" "0,1,1,0,1,0,1,0,0,1,0,0,0,1,0,1,1,1,1,0,1,0,0,1,1,1,0,0,1,0,1,1,1,0,0,1,0,1,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1" "146.67,197.5,195.42,-1352.08,198.33,-1349.17,252.5,153.33,-1345.83,-1340.42,310,161.25,212.5,317.5,212.92,262.92,309.58,210,310,304.58,-1347.92,250.42,149.17,250.83,251.67,308.75,-1342.5,218.33,172.92,317.08,320.83,274.17,173.75,175,326.25,-1322.08,-1321.67,179.17,172.92,-1336.67,212.92,164.17,260.83,205.83,251.25,295.42,295.42,296.25,-1355.83,242.08,-1361.25,188.33,138.75,184.17,-1373.33,-1365.83,-1371.25,277.08,222.92,220.83,170.83,118.33,-1384.58,110.83,-1397.5,107.92,222.5,-1380.42" "1,1,1,0,0,1,1,0,1,1,0,1,0,1,1,0,0,1,0,1,1,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,1,0,0,1,1,0,0,0,0,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,0,1,1,1,1,1,0,1" "-1353.75,194.17,140,290.42,292.08,291.67,245,295.42,244.17,-1347.92,252.92,299.17,199.17,248.75,152.08,198.33,-1350.83,200,202.5,-1352.08,-1339.58,154.58,155.83,306.67,203.75,302.08,246.25,250.83,-1352.92,241.25,145.83,193.75,244.58,-1357.92,-1362.08,186.25,128.75,125.42,261.67,-1399.17,145,-1399.17,-1395,206.25,-1396.67,-1388.75,-1386.25,217.08,118.33,170.42,-1386.67,168.33,-1380.42,-1383.75" "0,1,0,0,0,0,0,0,1,0,1,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,0,1,0,1,0,1" "-1380,121.67,220,164.17,253.33,102.5,203.75,103.33,200.83,247.92,247.92,150.42,197.5,144.58,-1408.33,243.75,141.67,142.92,-1407.5,92.5,191.25,-1408.33,185,132.92,139.58,136.25,235.42,185.42,134.58,-1415.83,135.83,88.75,85.83,230.42,-1421.67,128.33,232.5,-1417.92,132.92,181.67,-1419.58,81.67,133.33,181.67,230.83,178.33,129.58,77.08,178.33,228.33,-1425,71.67,70,69.58,66.67,65.83,167.92,216.67,121.67,168.75,70.42,-1426.25,175,227.08,228.33,130.83,132.5,-1416.25,-1415.42,-1420.42,228.75,127.92,78.33,129.17,129.17,76.67,-1423.75,177.08,-1424.17,227.5,126.67,227.08,-1425.83,176.25,-1426.25,75.42,-1423.75,128.33,177.08,124.58,172.08,219.58,122.5,222.92,72.5,73.33,75" "0,1,0,0,1,1,1,1,1,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,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,1,1,1,1,0,1,1,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" "176.67,175,121.67,268.33,166.25,215.83,107.92,104.58,107.08,-1396.67,-1398.75,203.33,152.08,-1400,243.33,245.42,194.17,144.58,243.33,193.75,240,-1412.92,137.08,90.83,-1411.67,238.75,188.75,136.67,135.42,86.25,233.33,181.67,233.75,133.75,-1415,233.33,131.25,80,76.67,125.42,-1427.08,-1427.92,170,-1431.67,218.75,168.75,-1432.92,117.08,217.08,166.25,-1433.75,165.42,67.5,-1431.67,-1430.83,122.92,121.67,225,75.83,173.75,222.5,124.58,-1423.33,175.42,75.83,229.17,228.33,128.75,-1419.17,130.83,179.58,129.17,178.75,81.25,180,77.92,228.75,128.33,177.08,179.58,79.17,82.92,184.58,83.75,183.33,184.17,182.92,129.17,122.92,69.58,216.67,-1432.08,121.67,73.33,124.17" "0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,0,1,1" "172.92,170.83,170.42,267.92,118.33,-1382.92,264.17,261.67,260.83,209.17,161.25,110.42,157.5,204.17,105.42,-1395.42,200,249.17,201.67,201.25,251.25,101.25,-1401.67,-1400.83,103.33,150.83,196.25,149.58,-1407.08,195.42,-1409.17,239.58,88.75,189.17,139.58,235.42,132.5,80.83,82.08,80.42,226.67,179.17,177.08,74.17,-1427.5,120.83,169.58,220,69.58,69.58,69.17,221.25,171.25,170.42,71.67,-1427.92,121.25,70.42,219.58,118.75,69.58,70.42,220.42,-1431.25,170,117.92,216.25,165.42,114.58,-1435,119.17,-1422.92,77.92,79.17,178.33,-1422.08,127.92,227.92,127.5,229.17,179.58,232.92,-1419.58,80.83,177.92,79.17,78.33,230,179.17,78.33,-1421.67,-1422.92,227.5,76.67,174.58,125.42,176.67,125.83,121.25,172.08,115.83,167.92,67.08,-1432.5,-1433.33,-1432.5,167.92,117.08,-1428.75,76.25,174.17" "1,1,0,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1" "250.83,233.75,130.83,178.75,177.5,230.42,231.67,78.75,125.42,-1421.67,-1421.67,227.08,127.92,224.58,174.17,172.08,120.83,72.5,-1426.67,70.83,125,175,178.33,176.67,226.67,180.83,96.25,99.17,-1400,151.67,101.25,104.17,256.67,-1386.67,213.33,265.42,263.33,159.58,263.33,114.58,211.67,211.67,160.42,154.17,201.25,-1405,246.25,192.92,239.58,139.58,137.08,-1412.5,88.75,190,238.75,89.58,242.5,189.58,90,236.25,133.75,231.25,177.5,123.75,123.75,122.08,73.33,122.5,175,125" "1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1" "136.25,184.17,235.42,84.58,-1415.42,233.33,-1413.75,-1414.58,83.75,75.83,175.42,218.33,-1432.5,167.92,66.67,216.25,214.58,114.17,218.33,217.5,-1425.83,70.42,123.75,123.33,78.33,-1421.25,230.83,-1420.83,135.83,82.5,233.75,184.17,231.25,184.17,185,185,86.25,236.67,136.67,85.83,234.17,134.58,181.25,135,89.58,188.75,189.58,139.58,90,86.25,235,138.33,242.92,242.5,185.42,185,235,134.17,234.17,182.5,81.67,80.83,182.5,77.92,177.5,125,71.67,75,230.83,81.67,137.5,235,136.25,185.83" "1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1" "180,183.75,-1415.42,-1413.75,134.58,233.75,231.25,231.25,232.08,182.08,81.25,82.5,232.5,134.58,230.42,-1420.83,228.75,127.08,227.5,177.5,129.17,177.08,126.67,176.25,177.08,229.17,-1417.5,132.92,83.33,80.83,232.92,185.42,-1412.92,237.5,89.58,190.42,139.58,136.67,187.92,-1411.67,84.17,77.08,178.75,71.67,220.83,221.25,121.25,222.92,71.67,172.08,223.75,-1428.33,122.92,226.25,174.58,75.42,227.5,178.33,76.67,128.75,180,229.58,179.58,130,127.5,180.42,79.58,-1420.42,79.58,230.42,228.75,75" "1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,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,1,1,1,1,1,1,1,1,0,1,1,1,1" "339.58,282.92,-1325,220.83,270.42,315,158.75,206.67,261.25,261.67,255.83,305.42,-1338.33,321.25,269.58,222.08,174.17,325,172.5,165.42,-1332.92,-1332.08,-1331.67,222.5,175.83,-1320,233.33,333.33,234.58,235,285,332.5,325.42,171.67,-1327.92,-1329.58,172.5,224.58,223.75,277.08,185.42,-1320.42,183.75,179.17,-1330,317.08,268.33,269.58,311.67,210.83,-1336.67,315,262.92,216.67,213.75,161.25,264.58,-1340.83,312.92,314.58,-1329.17,220.83,164.58,317.5,167.5,-1333.75,270.42,-1334.17,267.08,221.25,271.25,318.75,-1333.33,221.67,274.17,172.92,320.42,312.5,212.5,164.58,162.92,-1343.75,204.58,252.08,-1342.92,250,-1352.5,197.5,-1346.25,-1346.25,205.83,150,-1352.5,257.92,317.5,218.75,164.17,264.17,318.75,318.75,152.92,249.58,196.25,294.17,-1355.83,195,-1367.5,181.25,132.92,284.17,243.33,190.83,-1359.17,143.33,-1354.58,147.92,145.83,297.08,195.83,244.58" "1,1,1,0,1,0,0,1,1,0,1,1,1,0,0,1,0,1,0,0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,0,1,1,1,1,1,1,0,1,0,1,1,0,0,0,1,0,1,1,0,0,1,1,1,0,0,0,0,1,0,0,1,1,0,0,1,0,1,1,1,1,1,1,1,0,1,0,1,0,1,0,1,1,0,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,0,0,1,1,0,0" "288.75,335,330.83,277.08,-1326.67,170,205.42,200.83,198.33,145.83,192.5,245.42,297.08,248.33,248.75,-1349.17,198.33,146.67,291.25,241.67,-1360,-1358.33,-1350.83,301.25,205,308.33,160,-1331.25,-1335.83,265,154.58,302.5,-1342.5,256.25,209.17,265.83,168.33,-1324.58,275,222.92,219.58,321.25,275.83,-1317.08,-1307.92,187.08,186.25,340,344.58,237.92,234.58,177.92,223.75,316.67,315.42,167.08,265.42,262.5,209.17,-1348.33,148.75,299.58,300.83,304.58,-1347.08,156.67,-1340.42,-1345.42,200.42,250.83,251.25,-1347.92,203.33,204.17,209.17,162.08,260.42,162.08,162.5,313.33,259.17,-1344.17,-1347.08,296.25,-1354.17,148.75,202.08,149.58,200,248.75,200,199.58,299.58,252.5,299.17,300.42,147.08,-1354.58,250.83,255.42,-1328.75,317.92,217.92,169.58,-1333.75,164.58,208.75,159.58,208.33,256.67,156.67,254.58,296.67,-1360.83,-1374.17,280,-1367.92,182.08,-1357.08,141.25,-1360.83,294.17,195,203.75,304.58" "1,0,1,1,1,1,1,1,0,0,1,0,0,1,1,0,0,1,1,1,1,1,0,0,0,1,1,1,0,0,0,1,0,0,1,0,1,0,0,0,1,1,1,0,0,1,1,1,0,1,1,1,1,0,0,1,0,1,1,1,0,1,1,0,0,0,0,1,0,1,1,0,1,1,0,1,1,0,1,0,0,0,1,1,0,0,0,0,0,1,1,1,1,1,0,0,0,1,0,0,1,0,0,1,1,1,1,1,0,1,1,0,0,1,0,0,1,1,0,1,0,0,0,0,1" "-1317.5,-1332.5,164.17,312.5,259.58,300,149.58,199.17,192.92,293.75,248.33,292.08,239.17,187.08,181.67,182.5,129.58,231.25,185.83,137.5,286.67,234.17,-1365.83,235.42,-1367.5,-1367.92,-1368.75,230.42,271.25,275,175.42,171.25,-1377.08,270.83,268.75,118.75,-1377.5,-1379.17,224.58,173.75,120.83,222.92,130.42,230,132.5,283.75,235.42,289.58,189.17,190.83,140,142.92,192.92,189.58,234.17,183.75,-1367.08,-1364.17,140.42,242.5,185.83,-1365,233.33,238.33,137.92,187.08,232.08,-1368.75,280,132.92,-1367.92,284.17,-1365.83,285.42,230.83,177.5,280.42,179.17,177.08,129.58,232.92,130.42,282.92,-1359.58,298.33,153.75,-1346.67,295.83,195,245.42,297.08,-1352.92,137.92,-1361.25,190.42,243.33,195.42,142.92,191.25,189.58,187.5,280,277.5,172.08,122.5,222.5,124.17,174.17,127.08,-1377.08,122.08,-1376.67,-1378.75,167.92,115,224.58,234.58,-1362.08,295,-1352.5,298.75,-1352.08,150.42,300.42,254.17" "0,0,1,0,0,1,1,1,1,0,1,0,1,1,0,0,0,1,0,1,1,0,1,0,0,1,1,0,0,0,1,1,1,0,1,0,1,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,1,0,0,1,0,1,0,1,1,1,0,1,0,0,1,0,0,1,1,0,1,1,0,1,1,1,1,0,0,0,1,1,1,1,0,1,1,1,0,1,0,0,0,0,0,0,1,0,1,1,0,1,1,0,0,1,0,1,1,0,1,1,1,1,1,1,1,0,0,1,1,0,1"
writetable(T,'myfile.csv')
  1 件のコメント
Oliver Steiner
Oliver Steiner 2023 年 2 月 2 日
thank you!!!

サインインしてコメントする。

その他の回答 (2 件)

dpb
dpb 2023 年 2 月 1 日
移動済み: Image Analyst 2023 年 2 月 1 日
What do you propose to do with the spreadsheet when you have it? That'll be just a string of text, and to write it to a given cell like that you'll have to turn it to text first...something like
C={[1:5].'};
sprintf('%d,',C{:})
ans = '1,2,3,4,5,'
without the nicety of eliminating the trailing comma by counting the number elements and writing specific formatting string.
All in all, looks like abadidea™, would strongly suggest a data redesign is needed...
  1 件のコメント
Oliver Steiner
Oliver Steiner 2023 年 2 月 2 日
編集済み: Oliver Steiner 2023 年 2 月 2 日
Thank you! I agree that a data redesign would be good. I am working on this... The basic idea is that I load data from participants and store them in a table in which each cell contains all the data from on condition. I found a smoothing code in python and therfore I want to safe the data in csv to convert it into a panda dataframe. The code looks like this:

サインインしてコメントする。


Image Analyst
Image Analyst 2023 年 2 月 1 日
I agree with @dpb if you want all those numbers in a single cell in Excel, you're going to have to turn the vector into a string and then put the string into a cell. Something like (untested)
t2 = table; % Create new table.
% Make columns have the same name as the original table.
t2.Properties.VariableNames = t.Properties.VariableNames
for row = 1 : height(t)
for col = 1 : width(t)
% Get cell contents.
vec = t{row, col}
% Turn into string. Assume numbers are integers.
% Otherwise use %f instead of %d.
str = sprintf('%d ')
t2{row, col} = {str};
end
end
writetable(t2, excelFullFileName);
You didn't attach your table so I didn't get a chance to test it. If it doesn't work, fix it or else attach your table in a .mat file.
  6 件のコメント
Oliver Steiner
Oliver Steiner 2023 年 2 月 3 日
Hey! I just added your code to the existening code. This is the "Filteringnoiseinmatlab .m" code. Many thx!
Image Analyst
Image Analyst 2023 年 2 月 3 日
>> Filteringnoiseinmatlab
Error using load
Unable to find file or directory 'expResEye_P01_AllB.mat'.
Error in Filteringnoiseinmatlab (line 41)
load(sprintf('expResEye_%s_AllB.mat', char(subs(1, sub))));

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeTables についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by