how to get txt data from fig / plot, if there are multiple curves?

3 次查看(过去 30 天)
How can I save the data in .txt format, if the input is a fig file, with multiple curves?

采纳的回答

Star Strider
Star Strider 2023-5-2
编辑:Star Strider 2023-5-2
I do not understand what you want to do. Getting the information on the line objects is straightforward —
I = openfig(websave('X-Ku_intrinsic_parameters_smoothed','https://www.mathworks.com/matlabcentral/answers/uploaded_files/1372719/X-Ku_intrinsic_parameters_smoothed.fig'));
Lines = findobj(I, 'Type','line')
Lines =
4×1 Line array: Line ( \xi') Line (\xi'') Line (\mu') Line (\mu'')
for k = 1:numel(Lines)
DisNm{k,:} = Lines(k).DisplayName; % Get 'DisplayName' Properties Of Each Line
XY{k,:} = [Lines(k).XData; Lines(k).YData]; % Data For Each Line
end
XY
XY = 4×1 cell array
{2×5201 double} {2×5201 double} {2×5201 double} {2×5201 double}
DisNm
DisNm = 4×1 cell array
{' \xi''} {'\xi'''} {'\mu'' } {'\mu'''}
Getting the other information from the line objects is similarly striaghtforward, as demonstrated.
.
  2 个评论
Zeynep Ertekin
Zeynep Ertekin 2023-5-3
Thank you for the answer! As far as I'm concerned you keep it in the cell format, however; I need to save as .txt, which I can not.
Star Strider
Star Strider 2023-5-3
My pleasure!
I was not certain what you want to do as stated in your original post.
If you want to save the results as a text file, one option is:
I = openfig(websave('X-Ku_intrinsic_parameters_smoothed','https://www.mathworks.com/matlabcentral/answers/uploaded_files/1372719/X-Ku_intrinsic_parameters_smoothed.fig'));
Lines = findobj(I, 'Type','line')
Lines =
4×1 Line array: Line ( \xi') Line (\xi'') Line (\mu') Line (\mu'')
for k = 1:numel(Lines)
DisNm{k,:} = Lines(k).DisplayName; % Get 'DisplayName' Properties Of Each Line
XY{k,:} = [Lines(k).XData; Lines(k).YData].'; % Data For Each Line
end
XY
XY = 4×1 cell array
{5201×2 double} {5201×2 double} {5201×2 double} {5201×2 double}
DisNm
DisNm = 4×1 cell array
{' \xi''} {'\xi'''} {'\mu'' } {'\mu'''}
Results = table(XY{1},XY{2},XY{3},XY{4}, 'VariableNames',DisNm)
Results = 5201×4 table
\xi' \xi'' \mu' \mu'' _______________ _______________ _______________ ________________ 8 55.828 8 64.748 8 1.7751 8 0.40307 8.002 55.824 8.002 64.734 8.002 1.773 8.002 0.4022 8.004 55.82 8.004 64.72 8.004 1.7709 8.004 0.40133 8.006 55.816 8.006 64.706 8.006 1.7689 8.006 0.40047 8.008 55.812 8.008 64.692 8.008 1.7668 8.008 0.39961 8.01 55.808 8.01 64.679 8.01 1.7648 8.01 0.39876 8.012 55.805 8.012 64.665 8.012 1.7628 8.012 0.39792 8.014 55.801 8.014 64.651 8.014 1.7607 8.014 0.39708 8.016 55.798 8.016 64.637 8.016 1.7587 8.016 0.39624 8.018 55.794 8.018 64.624 8.018 1.7568 8.018 0.39541 8.02 55.791 8.02 64.61 8.02 1.7548 8.02 0.39459 8.022 55.788 8.022 64.596 8.022 1.7528 8.022 0.39377 8.024 55.785 8.024 64.583 8.024 1.7509 8.024 0.39296 8.026 55.781 8.026 64.569 8.026 1.749 8.026 0.39215 8.028 55.778 8.028 64.555 8.028 1.747 8.028 0.39135 8.03 55.775 8.03 64.542 8.03 1.7451 8.03 0.39055
writetable(Results,'Results.txt')
fileread('Results.txt')
ans =
' \xi'_1, \xi'_2,\xi''_1,\xi''_2,\mu'_1,\mu'_2,\mu''_1,\mu''_2 8,55.8277730370173,8,64.7477675690316,8,1.77513228391763,8,0.403073423267415 8.002,55.8237670192029,8.002,64.7338964349183,8.002,1.77303275142913,8.002,0.40220011429119 8.004,55.8198372852057,8.004,64.720044580361,8.004,1.7709479151963,8.004,0.401332433411881 8.006,55.8159828917123,8.006,64.7062117238675,8.006,1.76887769789028,8.006,0.40047035565658 8.008,55.8122029064689,8.008,64.6923975827376,8.008,1.7668220220221,8.008,0.399613856012365 8.01,55.8084963993169,8.01,64.6786018790153,8.01,1.76478081083769,8.01,0.398762909782818 8.012,55.8048624469666,8.012,64.6648243329691,8.012,1.76275398764847,8.012,0.397917492062334 8.014,55.8013001299696,8.014,64.6510646678653,8.014,1.76074147626059,8.014,0.397077578229073 8.016,55.7978085295763,8.016,64.6373226075229,8.016,1.75874320051662,8.016,0.396243143733955 8.018,55.7943867398426,8.018,64.6235978775512,8.018,1.75675908511039,8.018,0.395414164111571 8.02,55.7910338554066,8.02,64.6098902037775,8.02,1.75478905432101,8.02,0.394590614952904 8.022,55.7877489725361,8.022,64.5961993145756,8.022,1.75283303341712,8.022,0.393772471936245 8.024,55.7845312084537,8.024,64.5825249374757,8.024,1.75089094736177,8.024,0.392959710830837 8.026,55.7813796611736,8.026,64.5688668028743,8.026,1.74896272215847,8.026,0.392152307664219 8.028,55.7782934518764,8.028,64.5552246419393,8.028,1.74704828314134,8.028,0.391350238116502 8.03,55.7752716969699,8.03,64.5415981869301,8.03,1.74514755726705,8.03,0.390553478448055 8.032,55.7723135306733,8.032,64.5279871735693,8.032,1.74326047015347,8.032,0.389762004828299 8.034,55.7694180727703,8.034,64.5143913336215,8.034,1.7413869492666,8.034,0.388975793317513 8.036,55.7665844628355,8.036,64.5008104053413,8.036,1.7395269214976,8.036,0.388194820296121 8.038,55.7638118446339,8.038,64.487244124175,8.038,1.73768031431973,8.038,0.387419062128174 8.04,55.7610993568087,8.04,64.4736922305019,8.04,1.73584705529356,8.04,0.386648495408735 8.042,55.7584461484803,8.042,64.4601544611651,8.042,1.7340270725108,8.042,0.385883096607358 8.044,55.7558513762197,8.044,64.4466305604728,8.044,1.73222029439785,8.044,0.385122842444616 8.046,55.7533142028842,8.046,64.4331202670728,8.046,1.7304266494757,8.046,0.384367709584694 8.048,55.7508337957552,8.048,64.4196233259863,8.048,1.72864606678922,8.048,0.383617674891866 8.05,55.7484093072126,8.05,64.4061394812452,8.05,1.7268784754051,8.05,0.382872715281337 8.052,55.7460399252595,8.052,64.3926684780017,8.052,1.72512380492117,8.052,0.382132807819289 8.054,55.7437248282367,8.054,64.3792100636056,8.054,1.72338198511716,8.054,0.381397929493687 8.056,55.7414631913416,8.056,64.3657639857556,8.056,1.72165294583101,8.056,0.380668057514413 8.058,55.7392542057205,8.058,64.352329992762,8.058,1.71993661795568,8.058,0.37994316919503 8.06,55.7370970622869,8.06,64.3389078362525,8.06,1.71823293162743,8.06,0.379223241652653 8.062,55.7349909615004,8.062,64.3254972661962,8.062,1.71654181819758,8.062,0.378508252581014 8.064,55.7329351003282,8.064,64.3120980343228,8.064,1.7148632088647,8.064,0.377798179299134 8.066,55.7309286926175,8.066,64.2987098958984,8.066,1.71319703513291,8.066,0.377092999415254 8.068,55.7289709392935,8.068,64.2853326076729,8.068,1.71154322906659,8.068,0.376392690659486 8.07,55.7270610608393,8.07,64.271965921449,8.07,1.70990172233724,8.07,0.375697230716469 8.072,55.7251982812304,8.072,64.2586095963779,8.072,1.7082724476204,8.072,0.375006597490938 8.074,55.7233818229288,8.074,64.2452633903304,8.074,1.70665533767897,8.074,0.374320768851248 8.076,55.7216109076981,8.076,64.2319270637672,8.076,1.70505032538495,8.076,0.37363972287676 8.078,55.7198847800028,8.078,64.2186003782699,8.078,1.70345734410512,8.078,0.372963437508588 8.08,55.7182026776718,8.08,64.2052830913162,8.08,1.70187632738816,8.08,0.372291891017085 8.082,55.716563836555,8.082,64.1919749714871,8.082,1.70030720883369,8.082,0.371625061645318 8.084,55.7149675047258,8.084,64.1786757793452,8.084,1.69874992297264,8.084,0.370962927516302 8.086,55.7134129324695,8.086,64.1653852787858,8.086,1.69720440392848,8.086,0.370305467231447 8.088,55.7118993825279,8.088,64.152103239423,8.088,1.69567058621033,8.088,0.369652659346684 8.09,55.7104261151981,8.09,64.1388294283679,8.09,1.69414840514219,8.09,0.369004482263335 8.092,55.7089923913591,8.092,64.1255636106798,8.092,1.69263779586618,8.092,0.368360914719233 8.094,55.7075974793406,8.094,64.1123055598728,8.094,1.69113869374269,8.094,0.367721935275767 8.096,55.7062406626064,8.096,64.0990550455026,8.096,1.68965103427763,8.096,0.367087522921793 8.098,55.7049212026177,8.098,64.0858118383621,8.098,1.6881747543157,8.098,0.366457656486091 8.1,55.7036383991363,8.1,64.0725757144537,8.1,1.6867097896029,8.1,0.365832314917498 8.102,55.7023915249156,8.102,64.0593464444246,8.102,1.6852560770858,8.102,0.365211477212142 8.104,55.7011798772728,8.104,64.0461238067073,8.104,1.68381355315069,8.104,0.364595122558967 8.106,55.7000027542235,8.106,64.0329075759073,8.106,1.6823821553262,8.106,0.36398323004687 8.108,55.6988594513386,8.108,64.0196975303406,8.108,1.68096182114095,8.108,0.363375779132184 8.11,55.6977492760634,8.11,64.006493446097,8.11,1.67955248775979,8.11,0.362772749052965 8.112,55.6966715356102,8.112,63.9932951095107,8.112,1.67815409357718,8.112,0.362174119245537 8.114,55.6956255385885,8.114,63.9801022931642,8.114,1.67676657682023,8.114,0.361579869169873 8.116,55.6946106072282,8.116,63.9669147840177,8.116,1.6753898757961,8.116,0.36098997850786 8.118,55.6936260642251,8.118,63.9537323658005,8.118,1.6740239291903,8.118,0.360404426741297 8.12,55.6926712228451,8.12,63.9405548198702,8.12,1.67266867640865,8.12,0.359823193886768 8.122,55.6917454247596,8.122,63.9273819326045,8.122,1.6713240564568,8.122,0.35924625942971 8.124,55.690847997088,8.124,63.9142134910944,8.124,1.66999000873329,8.124,0.358673603546777 8.126,55.689978274866,8.126,63.901049280772,8.126,1.66866647344432,8.126,0.358105206023538 8.128,55.6891356079141,8.128,63.8878890925698,8.128,1.66735338998842,8.128,0.357541047073028 8.13,55.6883193465183,8.13,63.8747327141318,8.13,1.6660506994449,8.13,0.356981106591775 8.132,55.6875288212905,8.132,63.8615799374238,8.132,1.66475834219455,8.132,0.356425365040195 8.134,55.6867634042865,8.134,63.8484305549209,8.134,1.66347625898925,8.134,0.355873802331189 8.136,55.6860224392731,8.136,63.8352843576722,8.136,1.66220439070457,8.136,0.35532639907251 8.138,55.685305302497,8.138,63.8221411398845,8.138,1.66094267901644,8.138,0.354783135595426 8.14,55.6846113546053,8.14,63.8090006979473,8.14,1.6596910655353,8.14,0.35424399240037 8.142,55.6839399657911,8.142,63.7958628253109,8.142,1.65844949198799,8.142,0.353708950007785 8.144,55.6832905043848,8.144,63.7827273229341,8.144,1.65721790061798,8.144,0.353177989116375 8.146,55.6826623526867,8.146,63.7695939872792,8.146,1.65599623379239,8.146,0.352651090424843 8.148,55.6820548966061,8.148,63.7564626151725,8.148,1.65478443424945,8.148,0.352128234693737 8.15,55.6814675200731,8.15,63.7433330103377,8.15,1.65358244461822,8.15,0.35160940273272 8.152,55.6808996082982,8.152,63.7302049736027,8.152,1.6523902081899,8.152,0.351094575582465 8.154,55.6803505684948,8.154,63.7170783056354,8.154,1.65120766831387,8.154,0.35058373409629 8.156,55.6798197776079,8.156,63.7039528107271,8.156,1.65003476894344,8.156,0.350076859524052 8.158,55.6793066562386,8.158,63.690828295963,8.158,1.64887145350804,8.158,0.34957393280456 8.16,55.6788106091553,8.16,63.67770456367,8.16,1.64771766613558,8.16,0.349074935327735 8.162,55.6783310312312,8.162,63.6645814215881,8.162,1.64657335159427,8.162,0.348579848328882 8.164,55.6778673467925,8.164,63.6514586780395,8.164,1.64543845431763,8.164,0.348088653168816 8.166,55.6774189777207,8.166,63.638336141943,8.166,1.64431291916117,8.166,0.347601331315673 8.168,55.6769853329752,8.168,63.625213622101,8.168,1.64319669114775,8.168,0.347117864243046 8.17,55.6765658383956,8.17,63.6120909292804,8.17,1.64208971572953,8.17,0.346638233460908 8.172,55.6761599355377,8.172,63.598967876198,8.172,1.64099193883885,8.172,0.346162420599285 8.174,55.6757670479128,8.174,63.585844274261,8.174,1.63990330556408,8.174,0.345690407499205 8.176,55.6753866074141,8.176,63.572719941134,8.176,1.63882376265974,8.176,0.345222175828894 8.178,55.6750180682866,8.178,63.5595946878748,8.178,1.63775325628376,8.178,0.344757707416647 8.18,55.674660855555,8.18,63.5464683302562,8.18,1.63669173292146,8.18,0.344296984385437 8.182,55.6743144358043,8.182,63.5333406882855,8.182,1.6356391393856,8.182,0.343839988578111 8.184,55.6739782436052,8.184,63.5202115793363,8.184,1.63459542273631,8.184,0.343386702010321 8.186,55.673651746125,8.186,63.5070808212622,8.186,1.63356053017924,8.186,0.342937106945101 8.188,55.673334394116,8.188,63.4939482348127,8.188,1.63253440953122,8.188,0.342491185467225 8.19,55.6730256562587,8.19,63.4808136405773,8.19,1.63151700827439,8.19,0.342048919894296 8.192,55.6727249941323,8.192,63.4676768609352,8.192,1.63050827447296,8.192,0.341610292611222 8.194,55.6724318799097,8.194,63.4545377196628,8.194,1.62950815623481,8.194,0.341175285953796 8.196,55.6721457819222,8.196,63.441396039314,8.196,1.62851660216984,8.196,0.340743882408788 8.198,55.6718661815394,8.198,63.4282516475214,8.198,1.62753356096073,8.198,0.340316064379294 8.2,55.6715925586177,8.2,63.4151043661404,8.2,1.62655898146477,8.2,0.339891814739531 8.202,55.6713243947597,8.202,63.4019540283189,8.202,1.62559281272843,8.202,0.339471116032655 8.204,55.6710611778544,8.204,63.3888004568144,8.204,1.62463500411104,8.204,0.33905395095826 8.206,55.6708024026593,8.206,63.3756434842217,8.206,1.62368550566316,8.206,0.338640302461499 8.208,55.6705475646304,8.208,63.362482939905,8.208,1.6227442668096,8.208,0.338230153156474 8.21,55.6702961537521,8.21,63.3493186527485,8.21,1.62181123761547,8.21,0.337823486237539 8.212,55.6700476774713,8.212,63.3361504584318,8.212,1.62088636842236,8.212,0.337420284547989 8.214,55.6698016440496,8.214,63.3229781865084,8.214,1.61996960995748,8.214,0.33702053126035 8.216,55.6695575480117,8.216,63.3098016737931,8.216,1.61906091286801,8.216,0.33662420962537 8.218,55.6693149200873,8.218,63.2966207551945,8.218,1.61816022785206,8.218,0.336231302459055 8.22,55.6690732632997,8.22,63.2834352637874,8.22,1.61726750621165,8.22,0.335841793334112 8.222,55.668832104886,8.222,63.2702450412908,8.222,1.61638269963441,8.222,0.335455665621339 8.224,55.6685909585794,8.224,63.2570499203866,8.224,1.61550575951696,8.224,0.335072902573302 8.226,55.668349362677,8.226,63.2438497436233,8.226,1.61463663793984,8.226,0.334693487609911 8.228,55.6681068260223,8.228,63.2306443507841,8.228,1.6137752865543,8.228,0.33431740452761 8.23,55.6678629016969,8.23,63.2174335818127,8.23,1.61292165803025,8.23,0.333944636675369 8.232,55.667617118801,8.232,63.2042172794463,8.232,1.6120757046956,8.232,0.333575167784147 8.234,55.6673690092284,8.234,63.1909952853312,8.234,1.6112373793585,8.234,0.333208981492135 8.236,55.6671181309503,8.236,63.1777674443729,8.236,1.61040663502354,8.236,0.332846061739474 8.238,55.6668640139978,8.238,63.164533600735,8.238,1.60958342465165,8.238,0.332486392184364 8.24,55.6666062149452,8.24,63.1512935998035,8.24,1.60876770184404,8.24,0.332129956874269 8.242,55.6663442895515,8.242,63.1380472890887,8.242,1.60795942028926,8.242,0.331776739789348 8.244,55.6660777900834,8.244,63.1247945147188,8.244,1.60715853346483,8.244,0.331426724964331 8.246,55.6658062732313,8.246,63.1115351285844,8.246,1.60636499561951,8.246,0.331079896381198 8.248,55.6655293090735,8.248,63.0982689764933,8.248,1.60557876113307,8.248,0.3307362382875 8.25,55.6652464590734,8.25,63.0849959119078,8.25,1.60479978393414,8.25,0.330395734901686 8.252,55.6649572942406,8.252,63.0717157843319,8.252,1.60402801926102,8.252,0.330058370564075 8.254,55.6646613774356,8.254,63.0584284463112,8.254,1.60326342169719,8.254,0.329724129464012 8.256,55.6643582968973,8.256,63.045133750973,8.256,1.60250594651734,8.256,0.32939299608006 8.258,55.664047624683,8.258,63.0318315536133,8.258,1.60175554859597,8.258,0.329064955085414 8.26,55.6637289483333,8.26,63.0185217077669,8.26,1.60101218392811,8.26,0.328739990714894 8.262,55.6634018407203,8.262,63.0052040714072,8.262,1.6002758078539,8.262,0.328418087674436 8.264,55.6630658992799,8.264,62.9918785010959,8.264,1.59954637657938,8.264,0.328099230617227 8.266,55.6627207163256,8.266,62.9785448541224,8.266,1.59882384615048,8.266,0.327783404256479 8.268,55.6623658876633,8.268,62.9652029879799,8.268,1.59810817286052,8.268,0.327470593365433 8.27,55.6620009960607,8.27,62.9518527644541,8.27,1.59739931343938,8.27,0.327160782901046 8.272,55.6616256618872,8.272,62.9384940455784,8.272,1.59669722406397,8.272,0.326853957485582 8.274,55.6612394741969,8.274,62.9251266900828,8.274,1.59600186210446,8.274,0.326550102228794 8.276,55.660842051846,8.276,62.9117505620379,8.276,1.59531318476365,8.276,0.32624920224589 8.278,55.6604329955298,8.278,62.8983655257034,8.278,1.59463114933169,8.278,0.325951242544761 8.28,55.6600119245704,8.28,62.8849714430544,8.28,1.59395571326604,8.28,0.325656208015062 8.282,55.6595784483943,8.282,62.871568182265,8.282,1.59328683427884,8.282,0.325364084137618 8.284,55.6591321956366,8.284,62.8581556041172,8.284,1.59262447026413,8.284,0.32507485611859 8.286,55.6586727809627,8.286,62.8447335829987,8.286,1.59196857992356,8.286,0.324788509167774 8.288,55.6581998242764,8.288,62.8313019834459,8.288,1.59131912078738,8.288,0.324505028733256 8.29,55.6577129679499,8.29,62.8178606713627,8.29,1.59067605180462,8.29,0.324224400217645 8.292,55.657211832935,8.292,62.8044095231744,8.292,1.59003933196072,8.292,0.323946609094492 8.294,55.6566960554337,8.294,62.7909484025149,8.294,1.58940891988459,8.294,0.323671640875546 8.296,55.6561652744422,8.296,62.7774771867262,8.296,1.58878477477265,8.296,0.323399481178058 8.298,55.6556191281416,8.298,62.7639957447245,8.298,1.58816685609054,8.298,0.323130115730237 8.3,55.6550572606502,8.3,62.7505039513926,8.3,1.58755512269272,8.3,0.322863530131144 8.302,55.6544793206267,8.302,62.7370016791101,8.302,1.58694953536178,8.302,0.32259971032363 8.304,55.6538849507924,8.304,62.7234888058447,8.304,1.58635005340329,8.304,0.322338641928582 8.306,55.6532738007372,8.306,62.7099652049073,8.306,1.58575663676311,8.306,0.322080310883393 8.308,55.6526455343701,8.308,62.6964307564485,8.308,1.58516924606374,8.308,0.32182470322914 8.31,55.651999805239,8.31,62.6828853339393,8.31,1.58458784192771,8.31,0.321571804895939 8.312,55.6513362705009,8.312,62.6693288191891,8.312,1.58401238442457,8.312,0.321321601841191 8.314,55.6506545989541,8.314,62.6557610934397,8.314,1.58344283519546,8.314,0.32107408036245 8.316,55.6499544541584,8.316,62.6421820317046,8.316,1.582879154681,8.316,0.320829226500791 8.318,55.6492355033988,8.318,62.6285915182525,8.318,1.58232130429678,8.318,0.320587026577414 8.32,55.6484974151244,8.32,62.6149894350674,8.32,1.58176924564759,8.32,0.32034746669342 8.322,55.6477398689603,8.322,62.6013756647444,8.322,1.58122294001078,8.322,0.320110533337356 8.324,55.646962543251,8.324,62.5877500909701,8.324,1.58068234943494,8.324,0.319876212884992 8.326,55.6461651114514,8.326,62.5741125998175,8.326,1.58014743617969,8.326,0.319644491768486 8.328,55.6453472640133,8.328,62.5604630751041,8.328,1.57961816177703,8.328,0.319415356387253 8.33,55.6445086870808,8.33,62.5468014033104,8.33,1.57909448892315,8.33,0.3191887933408 8.332,55.6436490543419,8.332,62.5331274723721,8.332,1.57857638036512,8.332,0.318964789346865 8.334,55.6427680740599,8.334,62.5194411722186,8.334,1.57806379837712,8.334,0.318743330879443 8.336,55.6418654280715,8.336,62.5057423868711,8.336,1.57755670616461,8.336,0.318524404665368 8.338,55.6409408228938,8.338,62.4920310113812,8.338,1.57705506702041,8.338,0.318307997780721 8.34,55.6399939517723,8.34,62.4783069344558,8.34,1.57655884365522,8.34,0.318094096597633 8.342,55.639024509117,8.342,62.4645700447145,8.342,1.57606799995847,8.342,0.317882688379541 8.344,55.638032214134,8.344,62.4508202386496,8.344,1.5755824990847,8.344,0.317673759673198 8.346,55.6370167649584,8.346,62.4370574069908,8.346,1.57510230540356,8.346,0.317467297883923 8.348,55.6359778780024,8.348,62.4232814445713,8.348,1.57462738265167,8.348,0.317263289725815 8.35,55.6349152594339,8.35,62.4094922444056,8.35,1.57415769487125,8.35,0.317061722391372 8.352,55.6338286267128,8.352,62.3956897071475,8.352,1.57369320657017,8.352,0.316862582914837 8.354,55.6327176886844,8.354,62.381873722712,8.354,1.57323388235091,8.354,0.316665858617853 8.356,55.6315821768949,8.356,62.3680441931647,8.356,1.57277968663402,8.356,0.316471536843892 8.358,55.6304218173027,8.358,62.3542010130768,8.358,1.57233058440761,8.358,0.316279604596275 8.36,55.6292363198008,8.36,62.3403440863913,8.36,1.57188654090714,8.36,0.316090049429476 8.362,55.6280254300218,8.362,62.3264733070246,8.362,1.57144752084423,8.362,0.315902858757909 8.364,55.6267888682196,8.364,62.3125885794725,8.364,1.57101349000732,8.364,0.315718019928681 8.366,55.6255263683852,8.366,62.2986898020026,8.366,1.57058441418485,8.366,0.315535520436242 8.368,55.6242376667215,8.368,62.2847768798965,8.368,1.5701602585541,8.368,0.315355347913282 8.37,55.6229225005955,8.37,62.2708497167187,8.37,1.56974098928185,8.37,0.315177489977941 8.372,55.62158060621,8.372,62.2569082136033,8.372,1.56932657224388,8.372,0.315001934170141 8.374,55.6202117387438,8.374,62.2429522748862,8.374,1.56891697395622,8.374,0.314828668160771 8.376,55.6188156385906,8.376,62.228981808119,8.376,1.56851216071664,8.376,0.314657680006349 8.378,55.6173920470756,8.378,62.2149967180012,8.378,1.56811209925945,8.378,0.314488957135836 8.38,55.6159407220548,8.38,62.2009969103237,8.38,1.56771675604978,8.38,0.314322487665777 8.382,55.6144614195218,8.382,62.1869822964945,8.382,1.56732609801838,8.382,0.314158259307078 8.384,55.6129538894165,8.384,62.1729527838324,8.384,1.56694009261264,8.384,0.313996260272688 8.386,55.6114178807475,8.386,62.1589082787395,8.386,1.56655870685063,8.386,0.313836478311714 8.388,55.6098531704629,8.388,62.144848695214,8.388,1.56618190793961,8.388,0.313678901631647 8.39,55.6082595154876,8.39,62.1307739414478,8.39,1.56580966363981,8.39,0.313523518256261 8.392,55.6066366786836,8.392,62.1166839321959,8.392,1.56544194196613,8.392,0.313370316311193 8.394,55.6049844289664,8.394,62.1025785776874,8.394,1.56507871008944,8.394,0.313219284325896 8.396,55.603302534204,8.396,62.0884577909455,8.396,1.5647199370942,8.396,0.313070409962165 8.398,55.6015907691326,8.398,62.0743214851973,8.398,1.56436559033318,8.398,0.312923681982284 8.4,55.5998489102349,8.4,62.0601695811929,8.4,1.56401563862892,8.4,0.312779088470052 8.402,55.5980767327128,8.402,62.0460019863385,8.402,1.56367005050561,8.402,0.312636618164106 8.404,55.5962740151444,8.404,62.031818622374,8.404,1.56332879454567,8.404,0.312496259190084 8.406,55.5944405323826,8.406,62.017619403603,8.406,1.56299183937517,8.406,0.312358000064705 8.408,55.5925760857062,8.408,62.0034042519546,8.408,1.56265915492986,8.408,0.312221829441114 8.41,55.5906804404221,8.41,61.9891730820964,8.41,1.56233070951566,8.41,0.312087735861496 8.412,55.5887534009526,8.412,61.974925815317,8.412,1.56200647279911,8.412,0.311955707949892 8.414,55.5867947539082,8.414,61.9606623725122,8.414,1.56168641435215,8.414,0.311825734472222 8.416,55.5848042945145,8.416,61.9463826724532,8.416,1.56137050361576,8.416,0.311697804056166 8.418,55.5827818122925,8.418,61.932086639863,8.418,1.56105871070758,8.418,0.311571905544042 8.42,55.5807271088706,8.42,61.917774193309,8.42,1.56075100549788,8.42,0.311448027739971 8.422,55.5786399850622,8.422,61.9034452576161,8.422,1.56044735787873,8.422,0.311326159426244 8.424,55.5765202365583,8.424,61.8890997605922,8.424,1.56014773838251,8.424,0.311206289690745 8.426,55.5743676695274,8.426,61.8747376210667,8.426,1.55985211762163,8.426,0.311088407337593 8.428,55.572182103293,8.428,61.8603587668767,8.428,1.55956046593928,8.428,0.310972501361903 8.43,55.5699633345939,8.43,61.845963125641,8.43,1.55927275399881,8.43,0.310858561089844 8.432,55.5677111720433,8.432,61.8315506214858,8.432,1.55898895269638,8.432,0.310746575267331 8.434,55.5654254335677,8.434,61.8171211848821,8.434,1.55870903347386,8.434,0.310636533336947 8.436,55.5631059419829,8.436,61.802674745195,8.436,1.55843296714738,8.436,0.310528424228323 8.438,55.5607524984516,8.438,61.7882112273655,8.438,1.55816072552989,8.438,0.310422237362218 8.44,55.5583649349865,8.44,61.7737305641058,8.44,1.55789227941568,8.44,0.310317961982946 8.442,55.5559430670692,8.442,61.7592326854647,8.442,1.55762760119978,8.442,0.310215587433049 8.444,55.5534867261304,8.444,61.7447175227135,8.444,1.55736666204029,8.444,0.310115102987766 8.446,55.5509957296308,8.446,61.7301850051153,8.446,1.55710943422309,8.446,0.310016498189725 8.448,55.548469907837,8.448,61.7156350720325,8.448,1.55685588982305,8.448,0.309919762366917 8.45,55.5459090903169,8.45,61.7010676540522,8.45,1.55660600085685,8.45,0.309824885274793 8.452,55.5433131182799,8.452,61.6864826811361,8.452,1.55635974034521,8.452,0.309731856115832 8.454,55.5406818225747,8.454,61.6718800934468,8.454,1.556117080283,8.454,0.30964066470915 8.456,55.5380150328856,8.456,61.6572598249768,8.456,1.55587799348723,8.456,0.309551300637395 8.458,55.5353125858819,8.458,61.6426218128909,8.458,1.55564245257847,8.458,0.30946375367057 8.46,55.5325743372086,8.46,61.6279659909487,8.46,1.55541043102858,8.46,0.309378013418609 8.462,55.5298001093324,8.462,61.6132923022087,8.462,1.55518190134171,8.462,0.309294069655152 8.464,55.5269897662802,8.464,61.5986006809399,8.464,1.55495683746267,8.464,0.309211912332103 8.466,55.5241431442555,8.466,61.5838910681923,8.466,1.55473521198292,8.466,0.309131531077583 8.468,55.5212600928498,8.468,61.5691634039686,8.468,1.55451699927653,8.468,0.309052916059954 8.47,55.5183404656127,8.47,61.5544176277472,8.47,1.55430217241519,8.47,0.308976056985557 8.472,55.5153841109714,8.472,61.5396536820917,8.472,1.55409070566384,8.472,0.30890094393726 8.474,55.5123908937676,8.474,61.5248715097405,8.474,1.5538825726544,8.474,0.308827567143453 8.476,55.5093606564915,8.476,61.5100710492552,8.476,1.55367774761544,8.476,0.308755916297741 8.478,55.5062932611909,8.478,61.4952522486856,8.478,1.55347620514658,8.478,0.308685981673989 8.48,55.5031885764329,8.48,61.4804150502896,8.48,1.55327791877789,8.48,0.308617753637009 8.482,55.5000464636832,8.482,61.4655593991047,8.482,1.55308286368381,8.482,0.308551221971356 8.484,55.4968667818466,8.484,61.4506852383929,8.484,1.55289101460949,8.484,0.308486377178269 8.486,55.4936494005378,8.486,61.435792519871,8.486,1.55270234614727,8.486,0.308423209602552 8.488,55.4903941808734,8.488,61.4208811834396,8.488,1.55251683298411,8.488,0.308361709425299 8.49,55.4871010066709,8.49,61.4059511802916,8.49,1.55233445062186,8.49,0.30830186703497 8.492,55.4837697335752,8.492,61.3910024586658,8.492,1.55215517414763,8.492,0.308243672949175 8.494,55.480400246568,8.494,61.3760349671647,8.494,1.55197897865582,8.494,0.308187117507259 8.496,55.4769924277207,8.496,61.3610486541584,8.496,1.55180583982292,8.496,0.30813219114134 8.498,55.4735461415257,8.498,61.3460434723384,8.498,1.55163573336904,8.498,0.308078884396309 8.5,55.4700612729648,8.5,61.331019369798,8.5,1.55146863498521,8.5,0.30802718796258 8.502,55.4665377041092,8.502,61.3159762991418,8.502,1.55130452036974,8.502,0.307977092466899 8.504,55.4629753131885,8.504,61.3009142115479,8.504,1.55114336575934,8.504,0.307928588557843 8.506,55.4593739937991,8.506,61.2858330608142,8.506,1.55098514707788,8.506,0.307881666594767 8.508,55.4557336270809,8.508,61.2707328022661,8.508,1.55082984071487,8.508,0.30783631770646 8.51,55.4520541074453,8.51,61.2556133879261,8.51,1.550677423249,8.51,0.307792532472376 8.512,55.4483353169635,8.512,61.2404747711407,8.512,1.55052787066961,8.512,0.307750301812121 8.514,55.4445771544706,8.514,61.225316911281,8.514,1.55038116033393,8.514,0.307709616428838 8.516,55.4407795148436,8.516,61.2101397605147,8.516,1.55023726858781,8.516,0.307670467431308 8.518,55.4369422898162,8.518,61.1949432789988,8.518,1.55009617267206,8.518,0.307632845524495 8.52,55.4330653777579,8.52,61.1797274198616,8.52,1.54995784930361,8.52,0.307596741809903 8.522,55.4291486800648,8.522,61.1644921467378,8.522,1.54982227575238,8.522,0.307562147219869 8.524,55.425192096387,8.524,61.1492374140507,8.524,1.54968942959385,8.524,0.307529052941391 8.526,55.4211955352221,8.526,61.1339631832525,8.526,1.54955928779964,8.526,0.307497449890434 8.528,55.4171588944737,8.528,61.1186694122589,8.528,1.54943182833085,8.528,0.307467329292194 8.53,55.4130820872961,8.53,61.1033560632495,8.53,1.54930702869751,8.53,0.307438682284555 8.532,55.4089650029782,8.532,61.0880230975163,8.532,1.54918486680981,8.532,0.307411500099988 8.534,55.4048075765604,8.534,61.0726704768895,8.534,1.54906532036694,8.534,0.307385773912756 8.536,55.4006097160745,8.536,61.0572981628211,8.536,1.54894836793392,8.536,0.307361495086298 8.538,55.3963713130215,8.538,61.0419061183347,8.538,1.54883398716629,8.538,0.307338654831256 8.54,55.3920923060505,8.54,61.0264943079237,8.54,1.5487221563817,8.54,0.307317244640217 8.542,55.3877725993516,8.542,61.0110626975948,8.542,1.54861285439983,8.542,0.307297255692902 8.544,55.3834121237742,8.544,60.9956112514483,8.544,1.54850605954562,8.544,0.307278679736555 8.546,55.3790107754758,8.546,60.9801399332209,8.546,1.5484017506169,8.546,0.307261508020019 8.548,55.3745685026515,8.548,60.9646487091813,8.548,1.54829990611324,8.548,0.307245731990406 8.55,55.3700852143811,8.55,60.9491375479411,8.55,1.54820050553099,8.55,0.307231343429521 8.552,55.3655608383706,8.552,60.933606416409,8.552,1.54810352720233,8.552,0.307218333717174 8.554,55.3609952966217,8.554,60.9180552838225,8.554,1.54800895055814,8.554,0.307206694529668 8.556,55.356388529297,8.556,60.9024841176433,8.556,1.54791675503657,8.556,0.307196417556042 8.558,55.3517404503655,8.558,60.8868928841694,8.558,1.54782691988657,8.558,0.307187494337995 8.56,55.3470510004554,8.56,60.8712815608742,8.56,1.54773942458996,8.56,0.307179916871974 8.562,55.3423201137921,8.562,60.8556501113053,8.562,1.54765424916695,8.562,0.307173676736056 8.564,55.3375477208756,8.564,60.8399985062279,8.564,1.54757137278648,8.564,0.307168765775714 8.566,55.3327337652445,8.566,60.8243267228245,8.566,1.5474907755779,8.566,0.307165175841874 8.568,55.3278781707631,8.568,60.8086347323697,8.568,1.54741243753233,8.568,0.307162898739989 8.57,55.3229808876058,8.57,60.7929225022817,8.57,1.54733633885917,8.57,0.307161926479239 8.572,55.3180418509291,8.572,60.7771900101798,8.572,1.54726245964412,8.572,0.307162250921465 8.574,55.3130610071821,8.574,60.7614372325479,8.574,1.54719078011112,8.574,0.307163864001268 8.576,55.3080383031629,8.576,60.7456641387544,8.576,1.54712128092069,8.576,0.30716675793883 8.578,55.3029736677418,8.578,60.7298707060108,8.578,1.5470539423186,8.578,0.307170924632373 8.58,55.2978670694865,8.58,60.7140569110052,8.58,1.54698874543828,8.58,0.307176356145646 8.582,55.2927184448345,8.582,60.6982227307162,8.582,1.54692567075836,8.582,0.307183044777048 8.584,55.2875277433777,8.584,60.6823681405949,8.584,1.54686469929584,8.584,0.307190982517568 8.586,55.2822949137772,8.586,60.6664931177511,8.586,1.54680581176945,8.586,0.30720016144187 8.588,55.2770199240185,8.588,60.6505976409244,8.588,1.54674898966914,8.588,0.3072105741212 8.59,55.2717027096078,8.59,60.6346816897276,8.59,1.54669421392464,8.59,0.307222212582928 8.592,55.2663432359695,8.592,60.6187452445156,8.592,1.54664146625873,8.592,0.307235069145463 8.594,55.2609414666658,8.594,60.6027882838389,8.594,1.54659072763025,8.594,0.307249136261817 8.596,55.2554973518709,8.596,60.5868107866554,8.596,1.54654198028584,8.596,0.307264406077593 8.598,55.2500108443201,8.598,60.5708127346734,8.598,1.54649520497333,8.598,0.307280871191324 8.6,55.2444819189841,8.6,60.5547941110854,8.6,1.54645038436865,8.6,0.307298523930513 8.602,55.238910538028,8.602,60.5387548963627,8.602,1.54640750010003,8.602,0.307317356871863 8.604,55.2332966510439,8.604,60.5226950726355,8.604,1.54636653374473,8.604,0.30733736237562 8.606,55.2276402428979,8.606,60.5066146262106,8.606,1.5463274677968,8.606,0.307358533045772 8.608,55.2219412726117,8.608,60.4905135379959,8.608,1.54629028452473,8.608,0.30738086146448 8.61,55.2161997057265,8.61,60.4743917936285,8.61,1.54625496581139,8.61,0.307404340141147 8.612,55.2104155138368,8.612,60.4582493773196,8.612,1.54622149456554,8.612,0.30742896195261 8.614,55.204588667606,8.614,60.4420862744882,8.614,1.54618985320849,8.614,0.307454719142697 8.616,55.1987191441003,8.616,60.4259024714993,8.616,1.5461600242561,8.616,0.307481605019348 8.618,55.1928069149144,8.618,60.4096979561436,8.618,1.54613199050073,8.618,0.307509611702699 8.62,55.1868519629352,8.62,60.3934727130545,8.62,1.54610573485843,8.62,0.307538732278772 8.622,55.1808542491635,8.622,60.3772267315362,8.622,1.54608124012157,8.622,0.307568959657146 8.624,55.17481376254,8.624,60.3609599981137,8.624,1.54605848930078,8.624,0.307600286329034 8.626,55.1687304816442,8.626,60.3446725037647,8.626,1.54603746596695,8.626,0.307632705405922 8.628,55.1626043827273,8.628,60.3283642380993,8.628,1.54601815275964,8.628,0.307666209728268 8.63,55.1564354554284,8.63,60.312035188108,8.63,1.54600053383911,8.63,0.307700792185642 8.632,55.1502236770466,8.632,60.2956853474316,8.632,1.54598459239787,8.632,0.307736445827686 8.634,55.143969028024,8.634,60.279314700645,8.634,1.54597031139565,8.634,0.307773163682214 8.636,55.1376715104561,8.636,60.2629232476029,8.636,1.54595767484716,8.636,0.307810938475086 8.638,55.131331089884,8.638,60.2465109726036,8.638,1.54594666670891,8.638,0.307849763587001 8.64,55.124947777018,8.64,60.2300778737263,8.64,1.54593727066822,8.64,0.307889632053048 8.642,55.118521553115,8.642,60.2136239427637,8.642,1.54592947118363,8.642,0.307930536946515 8.644,55.1120524061844,8.644,60.19714917081,8.644,1.54592325169506,8.644,0.30797247130613 8.646,55.1055403236533,8.646,60.1806535533397,8.646,1.54591859669017,8.646,0.308015428479848 8.648,55.0989853148349,8.648,60.164137085565,8.648,1.5459154897253,8.648,0.308059401713763 8.65,55.0923873550491,8.65,60.1475997610687,8.65,1.5459139165032,8.65,0.308104383999307 8.652,55.0857464615256,8.652,60.1310415739863,8.652,1.54591386034735,8.652,0.308150368888164 8.654,55.0790626108646,8.654,60.1144625263987,8.654,1.54591530645848,8.654,0.3081973496719 8.656,55.0723358220421,8.656,60.0978626084398,8.656,1.54591823918599,8.656,0.308245319374691 8.658,55.0655660837656,8.658,60.0812418215792,8.658,1.54592264323583,8.658,0.308294271701016 8.66,55.0587533898652,8.66,60.0646001595451,8.66,1.54592850383779,8.66,0.308344199987914 8.662,55.0518977618776,8.662,60.0479376238509,8.662,1.54593580566143,8.662,0.308395097614266 8.664,55.0449991852511,8.664,60.0312542104512,8.664,1.54594453341269,8.664,0.308446958009881 8.666,55.0380576759344,8.666,60.0145499194477,8.666,1.54595467291801,8.666,0.308499774713709 8.668,55.0310732318321,8.668,59.9978247513645,8.668,1.5459662088324,8.668,0.308553541111905 8.67,55.0240458603948,8.67,59.9810787038732,8.67,1.54597912677855,8.67,0.308608251087207 8.672,55.0169755793177,8.672,59.9643117821543,8.672,1.54599341220455,8.672,0.308663897963925 8.674,55.0098623810336,8.674,59.9475239805179,8.674,1.54600905017287,8.674,0.308720475375594 8.676,55.0027062970912,8.676,59.9307153078553,8.676,1.54602602698287,8.676,0.308777977004866 8.678,54.9955073292367,8.678,59.9138857585931,8.678,1.54604432792985,8.678,0.308836396485276 8.68,54.9882654794492,8.68,59.8970353445038,8.68,1.54606393871654,8.68,0.308895727523122 8.682,54.9809807791607,8.682,59.8801640596066,8.682,1.54608484534401,8.682,0.308955963786502 8.684,54.9736532331444,8.684,59.8632719095331,8.684,1.54610703385697,8.684,0.30901709932732 8.686,54.9662828666624,8.686,59.8463589022431,8.686,1.54613049017644,8.686,0.309079127537188 8.688,54.9588696765713,8.688,59.8294250422041,8.688,1.54615520048537,8.688,0.30914204234432 8.69,54.9514137082733,8.69,59.8124703279609,8.69,1.54618115083576,8.69,0.309205837675108 8.692,54.9439149604877,8.692,59.7954947702965,8.692,1.54620832791261,8.692,0.309270507541441 8.694,54.9363734642975,8.694,59.7784983729798,8.694,1.54623671815352,8.694,0.309336045709642 8.696,54.9287892350694,8.696,59.7614811423264,8.696,1.5462663078506,8.696,0.309402445851447 8.698,54.9211622941075,8.698,59.7444430876058,8.698,1.54629708333232,8.698,0.309469702220667 8.7,54.9134926790139,8.7,59.727384213882,8.7,1.546329032215,8.7,0.309537808927416 8.702,54.9057803981705,8.702,59.7103045310068,8.702,1.54636213999765,8.702,0.309606759567032 8.704,54.8980254894122,8.704,59.6932040431275,8.704,1.54639639457309,8.704,0.30967654865708 8.706,54.8902279762551,8.706,59.6760827607359,8.706,1.54643178218976,8.706,0.309747169851107 8.708,54.8823878763942,8.708,59.6589406953572,8.708,1.54646829060948,8.708,0.309818617512065 8.71,54.8745052338345,8.71,59.6417778565956,8.71,1.5465059060225,8.71,0.309890885637287 8.712,54.8665800737217,8.712,59.6245942470414,8.712,1.54654461628525,8.712,0.309963968449665 8.714,54.8586124206195,8.714,59.6073898863688,8.714,1.54658440877392,8.714,0.310037860035663 8.716,54.8506023128284,8.716,59.590164782785,8.716,1.54662527044275,8.716,0.310112554738225 8.718,54.8425497843418,8.718,59.5729189447156,8.718,1.54666718883527,8.718,0.310188046916664 8.72,54.8344548620516,8.72,59.5556523889099,8.72,1.54671015156782,8.72,0.310264330413702 8.722,54.8263175910106,8.722,59.5383651239681,8.722,1.54675414623489,8.722,0.31034139978874 8.724,54.8181379963644,8.724,59.5210571645148,8.724,1.54679916077293,8.724,0.310419249455663 8.726,54.8099161250284,8.726,59.5037285203143,8.726,1.54684518284921,8.726,0.310497873555505 8.728,54.8016520153033,8.728,59.4863792087999,8.728,1.54689219988359,8.728,0.310577266460314 8.73,54.7933456979226,8.73,59.4690092435922,8.73,1.54694020037277,8.73,0.310657422738586 8.732,54.7849972172407,8.732,59.4516186377296,8.732,1.54698917250789,8.732,0.310738336729628 8.734,54.7766066108597,8.734,59.4342074081069,8.734,1.54703910403623,8.734,0.310820002876426 8.736,54.7681739280233,8.736,59.4167755676754,8.736,1.54708998279239,8.736,0.310902415594683 8.738,54.7596992112231,8.738,59.3993231338391,8.738,1.54714179804432,8.738,0.310985569616605 8.74,54.751182492706,8.74,59.3818501199421,8.74,1.54719453724101,8.74,0.311069459225109 8.742,54.7426238274202,8.742,59.3643565478997,8.742,1.54724818907562,8.742,0.311154079243352 8.744,54.7340232582064,8.744,59.3468424305902,8.744,1.54730274237954,8.744,0.311239423743245 8.746,54.7253808224341,8.746,59.3293077873386,8.746,1.54735818522022,8.746,0.31132548788446 8.748,54.7166965907672,8.748,59.3117526365677,8.748,1.54741450693109,8.748,0.31141226606087 8.75,54.7079705885844,8.75,59.2941769963363,8.75,1.54747169583425,8.75,0.311499753013777 8.752,54.6992028772365,8.752,59.2765808820986,8.752,1.54752974075382,8.752,0.311587943304403 8.754,54.6903935037553,8.754,59.2589643194951,8.754,1.54758863077586,8.754,0.311676831688601 8.756,54.6815425172681,8.756,59.2413273204147,8.756,1.54764835484821,8.756,0.31176641305683 8.758,54.6726499749348,8.758,59.2236699125933,8.758,1.54770890193322,8.758,0.31185668202852 8.76,54.6637159303064,8.76,59.205992108502,8.76,1.54777026137162,8.76,0.31194763338317 8.762,54.6547404252924,8.762,59.188293937259,8.762,1.54783242216217,8.762,0.312039262040344 8.764,54.6457235284615,8.764,59.170575416254,8.764,1.54789537360921,8.764,0.312131562715876 8.766,54.6366652873112,8.766,59.1528365640552,8.766,1.54795910549001,8.766,0.312224530280218 8.768,54.6275657569058,8.768,59.1350774081366,8.768,1.54802360712347,8.768,0.31231815963838 8.77,54.6184249992948,8.77,59.1172979661787,8.77,1.54808886733372,8.77,0.312412445815426 8.772,54.6092430726858,8.772,59.0994982664706,8.772,1.5481548763928,8.772,0.312507383721822 8.774,54.6000200326089,8.774,59.0816783287883,8.774,1.54822162401251,8.774,0.312602968147985 8.776,54.5907559378538,8.776,59.0638381755707,8.776,1.5482890996791,8.776,0.31269919418628 8.778,54.5814508507028,8.778,59.0459778345103,8.778,1.54835729331535,8.778,0.31279605689997 8.78,54.5721048396081,8.78,59.0280973281333,8.78,1.54842619433475,8.78,0.312893551297748 8.782,54.562717953464,8.782,59.0101966777147,8.782,1.54849579354777,8.782,0.312991672417411 8.784,54.5532902610721,8.784,58.9922759170295,8.784,1.54856608044065,8.784,0.313090415365878 8.786,54.5438218308846,8.786,58.9743350651261,8.786,1.5486370454455,8.786,0.3131897750809 8.788,54.534312719712,8.788,58.9563741472957,8.788,1.54870867854333,8.788,0.313289747140516 8.79,54.5247629994992,8.79,58.9383931959019,8.79,1.54878096992616,8.79,0.313390326211447 8.792,54.5151727353223,8.792,58.9203922337038,8.792,1.54885391047719,8.792,0.313491507595245 8.794,54.5055419878336,8.794,58.902371284581,8.794,1.54892748954444,8.794,0.313593286729883 8.796,54.4958708309568,8.796,58.8843303832109,8.796,1.54900169828761,8.796,0.313695658696815 8.798,54.486159329419,8.798,58.8662695520907,8.798,1.54907652713882,8.798,0.313798618723013 8.8,54.4764075538842,8.8,58.8481888230308,8.8,1.54915196673392,8.8,0.313902161951773 8.802,54.4666155764135,8.802,58.8300882261392,8.802,1.54922800801432,8.802,0.314006283862909 8.804,54.4567834633635,8.804,58.8119677844661,8.804,1.54930464107747,8.804,0.314110979843463 8.806,54.4469112881925,8.806,58.7938275314373,8.806,1.54938185733772,8.806,0.314216245082207 8.808,54.4369991238927,8.808,58.775667495589,8.808,1.54945964705257,8.808,0.314322074873417 8.81,54.427047042409,8.81,58.7574877087754,8.81,1.54953800204385,8.81,0.314428464929733 8.812,54.4170551190618,8.812,58.7392881973792,8.812,1.5496169125181,8.812,0.314535410363533 8.814,54.4070234305691,8.814,58.7210689970525,8.814,1.54969637026807,8.814,0.314642906778317 8.816,54.3969520401442,8.816,58.7028301383689,8.816,1.54977636559488,8.816,0.31475094936286 8.818,54.3868410422001,8.818,58.6845716486569,8.818,1.54985689042223,8.818,0.314859533809795 8.82,54.3766904934309,8.82,58.6662935643253,8.82,1.54993793548783,8.82,0.31496865570989 8.822,54.3665004867362,8.822,58.6479959181743,8.822,1.55001949293364,8.822,0.315078310371973 8.824,54.3562710921979,8.824,58.6296787417377,8.824,1.55010155349009,8.824,0.315188493599635 8.826,54.3460023900261,8.826,58.6113420640177,8.826,1.55018410924822,8.826,0.315299200703521 8.828,54.3356944569387,8.828,58.5929859217576,8.828,1.55026715056738,8.828,0.315410427216193 8.83,54.3253473794321,8.83,58.5746103538258,8.83,1.55035067057179,8.83,0.315522169190444 8.832,54.3149612358538,8.832,58.5562153856008,8.832,1.55043466012285,8.832,0.315634421996947 8.834,54.3045361002441,8.834,58.5378010549175,8.834,1.55051911093324,8.834,0.315747181051847 8.836,54.2940720579354,8.836,58.5193673987233,8.836,1.55060401495575,8.836,0.315860442467965 8.838,54.2835692047374,8.838,58.5009144477517,8.838,1.55068936397583,8.838,0.315974201688732 8.84,54.2730276045622,8.84,58.4824422414822,8.84,1.55077515034645,8.84,0.31608845448136 8.842,54.2624473528704,8.842,58.4639508159453,8.842,1.55086136560567,8.842,0.316203196656716 8.844,54.2518285334809,8.844,58.4454402055562,8.844,1.55094800193183,8.844,0.316318423831035 8.846,54.2411712255562,8.846,58.4269104439445,8.846,1.55103505145962,8.846,0.316434131937058 8.848,54.2304755214136,8.848,58.4083615734125,8.848,1.55112250660022,8.848,0.316550316701978 8.85,54.2197415042901,8.85,58.3897936263093,8.85,1.55121035936463,8.85,0.316666973963947 8.852,54.2089692570735,8.852,58.3712066423468,8.852,1.55129860165471,8.852,0.316784099595679 8.854,54.1981588776689,8.854,58.3526006621541,8.854,1.55138722698757,8.854,0.316901689477163 8.856,54.1873104478,8.856,58.3339757207432,8.856,1.55147622670484,8.856,0.317019739470197 8.858,54.1764240588527,8.858,58.3153318548866,8.858,1.55156559400348,8.858,0.317138245551178 8.86,54.1654998001177,8.86,58.29666910776,8.86,1.55165532062529,8.86,0.317257203687404 8.862,54.1545377629809,8.862,58.2779875160486,8.862,1.55174539998552,8.862,0.317376609345956 8.864,54.1435380227631,8.864,58.2592871177912,8.864,1.55183582434256,8.864,0.317496459325412 8.866,54.1325006955303,8.866,58.2405679541262,8.866,1.55192658704618,8.866,0.317616748985529 8.868,54.1214258582331,8.868,58.221830067705,8.868,1.55201767990366,8.868,0.31773747468651 8.87,54.1103136085439,8.87,58.2030734956934,8.87,1.55210909630114,8.87,0.317858632442949 8.872,54.0991640358698,8.872,58.1842982783273,8.872,1.55220082915912,8.872,0.317980217925651 8.874,54.0879772385815,8.874,58.1655044594518,8.874,1.55229287168186,8.874,0.31810222772765 8.876,54.0767533101607,8.876,58.1466920785606,8.876,1.55238521609863,8.876,0.318224657607061 8.878,54.0654923400143,8.878,58.1278611764283,8.878,1.55247785649408,8.878,0.31834750374037 8.88,54.0541944251163,8.88,58.109011797409,8.88,1.55257078514842,8.88,0.318470762287689 8.882,54.0428596679121,8.882,58.0901439845329,8.882,1.55266399609536,8.882,0.31859442937639 8.884,54.0314881497761,8.884,58.0712577764352,8.884,1.55275748180429,8.884,0.318718501359399 8.886,54.0200799907325,8.886,58.0523532205261,8.886,1.55285123623617,8.886,0.318842974225845 8.888,54.00863527006,8.888,58.0334303555719,8.888,1.55294525207137,8.888,0.318967844343206 8.89,53.9971540867118,8.89,58.0144892277458,8.89,1.55303952320537,8.89,0.319093107833396 8.892,53.9856365449959,8.892,57.9955298788118,8.892,1.55313404334447,8.892,0.319218761018419 8.894,53.9740827439819,8.894,57.9765523563547,8.894,1.55322880523454,8.894,0.319344799925602 8.896,53.9624927819241,8.896,57.9575567011634,8.896,1.55332380337495,8.896,0.319471221278945 8.898,53.950866762083,8.898,57.9385429611284,8.898,1.55341903064254,8.898,0.319598021087586 8.9,53.9392047739821,8.9,57.9195111761655,8.9,1.55351448115107,8.9,0.319725195877254 8.902,53.9275069345022,8.902,57.9004613971192,8.902,1.55361014869413,8.902,0.319852741791692 8.904,53.9157733289758,8.904,57.8813936686638,8.904,1.55370602713811,8.904,0.319980655362087 8.906,53.9040040716063,8.906,57.8623080310645,8.906,1.55380211002921,8.906,0.320108932857693 8.908,53.8921992626274,8.908,57.843204537392,8.908,1.55389839122654,8.908,0.320237570715108 8.91,53.880358997616,8.91,57.8240832314914,8.91,1.55399486526585,8.91,0.320366565350923 8.912,53.8684833894949,8.912,57.8049441586045,8.912,1.55409152575885,8.912,0.320495913312698 8.914,53.8565725379158,8.914,57.7857873700705,8.914,1.55418836676108,8.914,0.320625611031573 8.916,53.8446265469538,8.916,57.766612904772,8.916,1.55428538213891,8.916,0.320755654982349 8.918,53.8326455280185,8.918,57.7474208189378,8.918,1.55438256691559,8.918,0.320886041572521 8.92,53.8206295769196,8.92,57.7282111569803,8.92,1.55447991474648,8.92,0.321016767342371 8.922,53.8085788011085,8.922,57.7089839660475,8.922,1.55457742014551,8.922,0.321147828874018 8.924,53.7964933145558,8.924,57.6897392956889,8.924,1.55467507694266,8.924,0.32127922282416 8.926,53.7843732173787,8.926,57.6704771953082,8.926,1.55477287995745,8.926,0.321410945483876 8.928,53.7722186166793,8.928,57.6511977116024,8.928,1.5548708235583,8.928,0.321542993928233 8.93,53.7600296207238,8.93,57.6319008930586,8.93,1.55496890259383,8.93,0.321675364330076 8.932,53.7478063422022,8.932,57.6125867907685,8.932,1.55506711085764,8.932,0.321808053355198 8.934,53.7355488827452,8.934,57.5932554577885,8.934,1.55516544353304,8.934,0.321941057667573 8.936,53.7232573546935,8.936,57.5739069375995,8.936,1.55526389471925,8.936,0.322074374076692 8.938,53.7109318664297,8.938,57.5545412862266,8.938,1.55536245979602,8.938,0.322207999344755 8.94,53.6985725319246,8.94,57.5351585492608,8.94,1.55546113333548,8.94,0.32234192973192 8.942,53.6861794571159,8.942,57.5157587811991,8.942,1.55555990913854,8.942,0.322476162420571 8.944,53.6737527553923,8.944,57.4963420323038,8.944,1.55565878328343,8.944,0.322610693958268 8.946,53.6612925265217,8.946,57.4769083515275,8.946,1.55575775019679,8.946,0.322745521198158 8.948,53.648798895767,8.948,57.4574577922031,8.948,1.55585680461809,8.948,0.322880640585936 8.95,53.6362719758181,8.95,57.4379904043308,8.95,1.55595594208717,8.95,0.3230160492094 8.952,53.6237118603894,8.952,57.4185062447941,8.952,1.55605515713978,8.952,0.323151743787093 8.954,53.6111186847556,8.954,57.399005358966,8.954,1.556154444821,8.954,0.323287721206725 8.956,53.5984925482189,8.956,57.3794878050248,8.956,1.55625380069978,8.956,0.323423978323262 8.958,53.5858335691737,8.958,57.3599536334223,8.958,1.55635321924638,8.958,0.323560511549658 8.96,53.5731418580981,8.96,57.3404028981313,8.96,1.55645269604429,8.96,0.323697318466657 8.962,53.5604175330373,8.962,57.3208356514515,8.962,1.55655222652422,8.962,0.323834395454469 8.964,53.547660704935,8.964,57.3012519459298,8.964,1.55665180610958,8.964,0.323971739679109 8.966,53.5348714852007,8.966,57.2816518362233,8.966,1.55675142972177,8.966,0.324109347850026 8.968,53.5220500044525,8.968,57.2620353786624,8.968,1.55685109279148,8.968,0.324247216971344 8.97,53.5091963610612,8.97,57.2424026202061,8.97,1.55695079104044,8.97,0.324385344152688 8.972,53.4963106776122,8.972,57.2227536265418,8.972,1.55705051978293,8.972,0.32452372620719 8.974,53.4833930619061,8.974,57.2030884422566,8.974,1.5571502748935,8.974,0.324662360199 8.976,53.4704436446773,8.976,57.1834071261546,8.976,1.55725005124987,8.976,0.324801243143156 8.978,53.4574625381501,8.978,57.1637097365747,8.978,1.55734984514856,8.978,0.324940371880075 8.98,53.444449857343,8.98,57.1439963249722,8.98,1.55744965187478,8.98,0.325079743657625 8.982,53.4314057172742,8.982,57.1242669451458,8.982,1.557549467223,8.982,0.325219355290756 8.984,53.4183302408783,8.984,57.1045216570492,8.984,1.55764928697317,8.984,0.325359204229244 8.986,53.4052235430572,8.986,57.084760515485,8.986,1.55774910718173,8.986,0.325499287175262 8.988,53.3920857490739,8.988,57.0649835768563,8.988,1.55784892280644,8.988,0.32563960146399 8.99,53.3789169612573,8.99,57.045190895602,8.99,1.55794873088598,8.99,0.325780144092278 8.992,53.3657173168613,8.992,57.0253825312684,8.992,1.55804852687288,8.992,0.325920912289803 8.994,53.3524869226385,8.994,57.005558539051,8.994,1.5581483065107,8.994,0.326061903066147 8.996,53.3392259123502,8.996,56.9857189789618,8.996,1.55824806587771,8.996,0.326203113827432 8.998,53.3259343897225,8.998,56.9658639021945,8.998,1.55834780121222,8.998,0.32634454145591 9,53.3126124802511,9,56.9459933735197,9,1.55844750841061,9,0.326486183173984 9.002,53.2992603126913,9.002,56.9261074481328,9.002,1.55854718422779,9.002,0.32662803644962 9.004,53.2858780043898,9.004,56.9062061819423,9.004,1.55864682386164,9.004,0.326770098461566 9.006,53.2724656685023,9.006,56.886289631846,9.006,1.55874642435811,9.006,0.326912366317629 9.008,53.2590234348318,9.008,56.8663578626147,9.008,1.5588459815699,9.008,0.327054837105607 9.01,53.2455514253816,9.01,56.8464109278721,9.01,1.5589454914516,9.01,0.327197508351674 9.012,53.2320497530745,9.012,56.8264488897694,9.012,1.55904495126015,9.012,0.327340377371002 9.014,53.2185185501585,9.014,56.806471805161,9.014,1.55914435708837,9.014,0.327483441422373 9.016,53.2049579294398,9.016,56.7864797333896,9.016,1.55924370439607,9.016,0.327626697666346 9.018,53.1913680209545,9.018,56.7664727339579,9.018,1.55934299074579,9.018,0.327770143634552 9.02,53.1777489533415,9.02,56.7464508660778,9.02,1.55944221248501,9.02,0.327913776560308 9.022,53.1641008360311,9.022,56.7264141939377,9.022,1.55954136588116,9.022,0.328057593826088 9.024,53.1504238110501,9.024,56.706362770783,9.024,1.55964044742723,9.024,0.32820159275434 9.026,53.1367179803783,9.026,56.6862966616027,9.026,1.55973945385631,9.026,0.328345770809392 9.028,53.1229834754486,9.028,56.6662159257103,9.028,1.5598383822653,9.028,0.328490125457392 9.03,53.109220428043,9.03,56.6461206222593,9.03,1.55993722858693,9.03,0.328634654102643 9.032,53.095428961562,9.032,56.6260108132701,9.032,1.56003598981624,9.032,0.328779354043945 9.034,53.0816091969609,9.034,56.6058865618979,9.034,1.56013466313743,9.034,0.328924222809292 9.036,53.0677612560103,9.036,56.5857479248371,9.036,1.5602332450726,9.036,0.329069257839365 9.038,53.0538852694444,9.038,56.5655949685752,9.038,1.56033173226751,9.038,0.329214456696718 9.04,53.0399813599652,9.04,56.5454277507524,9.04,1.56043012211012,9.04,0.329359816747456 9.042,53.0260496516712,9.042,56.5252463334182,9.042,1.56052841064957,9.042,0.329505335477734 9.044,53.0120902757626,9.044,56.5050507836277,9.044,1.56062659583404,9.044,0.329651010635644 9.046,52.998103354359,9.046,56.4848411560524,9.046,1.5607246741929,9.046,0.329796839570918 9.048,52.9840890138876,9.048,56.464617520498,9.048,1.56082264251745,9.048,0.329942820020733 9.05,52.9700473883422,9.05,56.4443799296278,9.05,1.56092049834115,9.05,0.330088949202036 9.052,52.9559785909951,9.052,56.4241284568416,9.052,1.56101823837525,9.052,0.330235224973876 9.054,52.9418827518821,9.054,56.4038631567964,9.054,1.56111586009501,9.054,0.330381644722365 9.056,52.927760007442,9.056,56.3835840994434,9.056,1.56121336068463,9.056,0.330528206457529 9.058,52.913610478281,9.058,56.3632913425536,9.058,1.56131073653523,9.058,0.330674907354478 9.06,52.8994342860533,9.06,56.3429849514068,9.06,1.56140798624256,9.06,0.330821745155845 9.062,52.8852315762779,9.062,56.3226649907301,9.062,1.5615051061468,9.062,0.33096871746784 9.064,52.8710024605971,9.064,56.3023315232131,9.064,1.56160209397785,9.064,0.331115822105858 9.066,52.8567470664857,9.066,56.281984612986,9.066,1.5616989462942,9.066,0.33126305683254 9.068,52.8424655336421,9.068,56.2616243211378,9.068,1.56179566142964,9.068,0.331410419010354 9.07,52.8281579795294,9.07,56.2412507177214,9.07,1.56189223661204,9.07,0.331557906583839 9.072,52.8138245395385,9.072,56.2208638638986,9.072,1.56198866921477,9.072,0.331705517126466 9.074,52.7994653468486,9.074,56.2004638239887,9.074,1.5620849564948,9.074,0.331853248495463 9.076,52.7850805129856,9.076,56.1800506622822,9.076,1.56218109601468,9.076,0.33200109822792 9.078,52.7706701806746,9.078,56.1596244438406,9.078,1.56227708552615,9.078,0.332149064330224 9.08,52.7562344751786,9.08,56.1391852356173,9.08,1.5623729221843,9.08,0.332297144430413 9.082,52.7417735279305,9.082,56.1187331004476,9.082,1.56246860431565,9.082,0.332445336220189 9.084,52.7272874668706,9.084,56.0982681077294,9.084,1.56256412908988,9.084,0.332593637700484 9.086,52.7127764229663,9.086,56.077790316398,9.086,1.5626594943169,9.086,0.332742046464773 9.088,52.6982405221788,9.088,56.0572997981653,9.088,1.56275469754473,9.088,0.332890560610394 9.09,52.6836798958248,9.09,56.036796616012,9.09,1.56284973677975,9.09,0.333039177696264 9.092,52.6690946901217,9.092,56.016280836222,9.092,1.5629446096209,9.092,0.333187895535957 9.094,52.6544849980855,9.094,55.9957525271166,9.094,1.56303931424191,9.094,0.333336712163145 9.096,52.639850983629,9.096,55.9752117498574,9.096,1.56313384772511,9.096,0.333485625376852 9.098,52.625192763051,9.098,55.9546585751668,9.098,1.56322820843343,9.098,0.333634633238034 9.1,52.6105104661547,9.1,55.9340930668695,9.1,1.56332239433686,9.1,0.333783733341988 9.102,52.5958042313578,9.102,55.9135152959789,9.102,1.5634164031726,9.102,0.333932923687826 9.104,52.5810741812456,9.104,55.8929253243114,9.104,1.56351023310708,9.104,0.334082202265563 9.106,52.5663204551674,9.106,55.8723232212797,9.106,1.56360388164467,9.106,0.334231567021561 9.108,52.5515431731474,9.108,55.8517090545502,9.108,1.563697347774,9.108,0.334381015714825 9.11,52.5367424761644,9.11,55.8310828912654,9.11,1.56379062868655,9.11,0.334530546506357 9.112,52.5219184821472,9.112,55.8104447966471,9.112,1.56388372288347,9.112,0.334680157300681 9.114,52.5070713397581,9.114,55.7897948407626,9.114,1.5639766279055,9.114,0.334829846195134 9.116,52.4922011714661,9.116,55.769133088339,9.116,1.56406934250845,9.116,0.334979610719529 9.118,52.4773081064923,9.118,55.7484596131399,9.118,1.56416186472052,9.118,0.335129449362285 9.12,52.4623922897736,9.12,55.7277744761086,9.12,1.56425419284642,9.12,0.335279360113418 9.122,52.447453832021,9.122,55.7070777502231,9.122,1.56434632460878,9.122,0.33542934084835 9.124,52.4324928722344,9.124,55.6863694989734,9.124,1.5644382589162,9.124,0.335579389577106 9.126,52.4175095479004,9.126,55.6656497953081,9.126,1.56452999381872,9.126,0.335729504449773 9.128,52.4025039966218,9.128,55.64491870653,9.128,1.56462152740278,9.128,0.335879683299936 9.13,52.3874763339991,9.13,55.6241762987047,9.13,1.5647128584751,9.13,0.336029924561444 9.132,52.3724266997306,9.132,55.6034226439806,9.132,1.5648039847074,9.132,0.336180226042416 9.134,52.3573552339803,9.134,55.5826578124979,9.134,1.56489490516105,9.134,0.336330585987525 9.136,52.3422620558413,9.136,55.5618818657822,9.136,1.56498561786429,9.136,0.336481002555956 9.138,52.3271473073401,9.138,55.5410948794306,9.138,1.56507612162386,9.138,0.336631473768648 9.14,52.3120111109456,9.14,55.5202969199891,9.14,1.56516641472263,9.14,0.336781997561047 9.142,52.2968536136905,9.142,55.4994880571903,9.142,1.56525649558171,9.142,0.336932572423393 9.144,52.2816749295453,9.144,55.4786683596758,9.144,1.56534636312426,9.144,0.337083196354797 9.146,52.266475207638,9.146,55.4578379002196,9.146,1.56543601560406,9.146,0.337233867599934 9.148,52.2512545748614,9.148,55.4369967474777,9.148,1.5655254514204,9.148,0.337384584270694 9.15,52.2360131570604,9.15,55.4161449695821,9.15,1.56561466943094,9.15,0.337535344502612 9.152,52.2207510942826,9.152,55.3952826331952,9.152,1.56570366858796,9.152,0.337686146594933 9.154,52.2054685153998,9.154,55.3744098168827,9.154,1.56579244661407,9.154,0.337836988703202 9.156,52.1901655602269,9.156,55.3535265844112,9.156,1.56588100344379,9.156,0.337987869095741 9.158,52.1748423483223,9.158,55.3326330052951,9.158,1.56596933681431,9.158,0.338138785829869 9.16,52.1594990270678,9.16,55.311729153851,9.16,1.56605744605622,9.16,0.338289737510422 9.162,52.1441357211443,9.162,55.2908150984294,9.162,1.56614532970707,9.162,0.33844072190368 9.164,52.1287525661755,9.164,55.2698909140454,9.164,1.56623298615887,9.164,0.338591737921888 9.166,52.1133496937109,9.166,55.2489566606964,9.166,1.56632041517878,9.166,0.338742783076668 9.168,52.0979272405384,9.168,55.2280124185054,9.168,1.56640761470771,9.168,0.338893856194773 9.17,52.0824853337836,9.17,55.2070582566521,9.17,1.56649458451284,9.17,0.339044955579084 9.172,52.0670241087209,9.172,55.1860942450585,9.172,1.56658132276061,9.172,0.339196079265093 9.174,52.0515436977148,9.174,55.1651204522932,9.174,1.56666782849061,9.174,0.339347225666643 9.176,52.0360442352248,9.176,55.1441369512322,9.176,1.56675410070602,9.176,0.339498393217582 9.178,52.0205258529168,9.178,55.1231438148243,9.178,1.56684013859194,9.178,0.339649580073456 9.18,52.0049886880443,9.18,55.1021411150723,9.18,1.56692594072956,9.18,0.339800784769977 9.182,51.9894328648224,9.182,55.0811289185804,9.182,1.56701150645677,9.182,0.339952005606392 9.184,51.9738585215528,9.184,55.0601073012222,9.184,1.56709683516965,9.184,0.340103240858298 9.186,51.9582657939754,9.186,55.039076334695,9.186,1.56718192512926,9.186,0.340254489159634 9.188,51.9426548089832,9.188,55.0180360836821,9.188,1.56726677595725,9.188,0.340405748635021 9.19,51.9270257119788,9.19,54.9969866311149,9.19,1.56735138645308,9.19,0.340557017691026 9.192,51.911378626246,9.192,54.9759280423168,9.192,1.56743575603468,9.192,0.340708295036166 9.194,51.8957136804238,9.194,54.9548603902222,9.194,1.56751988361793,9.194,0.340859578876916 9.196,51.8800310088554,9.196,54.9337837432977,9.196,1.56760376830789,9.196,0.341010867497971 9.198,51.864330759272,9.198,54.9126981815643,9.198,1.56768740974803,9.198,0.34116215963877 9.2,51.8486130523961,9.2,54.8916037700401,9.2,1.56777080689062,9.2,0.341313453553084 9.202,51.8328780181473,9.202,54.8705005856609,9.202,1.56785395881161,9.202,0.341464747742066 9.204,51.8171258049551,9.204,54.849388698538,9.204,1.5679368653291,9.204,0.341616040841473 9.206,51.8013565200381,9.206,54.8282681795099,9.206,1.56801952487876,9.206,0.341767331297888 9.208,51.785570327891,9.208,54.8071391070553,9.208,1.56810193741694,9.208,0.341918617297779 9.21,51.7697673301445,9.21,54.7860015479964,9.21,1.56818410229607,9.21,0.342069897669717 9.212,51.7539476853563,9.212,54.7648555764754,9.212,1.568266018141,9.212,0.342221170707489 9.214,51.7381115107564,9.214,54.7437012642476,9.214,1.56834768543922,9.214,0.342372435168727 9.216,51.7222589440644,9.216,54.72253869017,9.216,1.5684291026555,9.216,0.342523689560039 9.218,51.7063901227666,9.218,54.7013679202792,9.218,1.56851026981894,9.218,0.342674932026057 9.22,51.6905051788781,9.22,54.6801890288043,9.22,1.56859118627472,9.22,0.342826161693665 9.222,51.6746042266022,9.222,54.6590020883596,9.222,1.56867185087322,9.222,0.342977376667477 9.224,51.6586874215864,9.224,54.6378071761574,9.224,1.56875226367265,9.224,0.343128575796072 9.226,51.6427548916545,9.226,54.616604361785,9.226,1.56883242440381,9.226,0.343279757458731 9.228,51.6268067687051,9.228,54.595393721087,9.228,1.5689123314296,9.228,0.34343092058225 9.23,51.6108431718312,9.23,54.5741753239272,9.23,1.56899198592873,9.23,0.343582063247595 9.232,51.5948642520234,9.232,54.5529492476489,9.232,1.56907138585666,9.232,0.343733184474331 9.234,51.5788701323327,9.234,54.5317155639495,9.234,1.56915053242119,9.234,0.343884282694489 9.236,51.5628609487321,9.236,54.5104743413103,9.236,1.56922942386154,9.236,0.344035356427412 9.238,51.5468368291622,9.238,54.4892256626626,9.238,1.56930806002492,9.238,0.344186404772699
T1 = readtable('Results.txt', 'VariableNamingRule','preserve')
T1 = 5201×8 table
\xi'_1 \xi'_2 \xi''_1 \xi''_2 \mu'_1 \mu'_2 \mu''_1 \mu''_2 ______ ______ _______ _______ ______ ______ _______ _______ 8 55.828 8 64.748 8 1.7751 8 0.40307 8.002 55.824 8.002 64.734 8.002 1.773 8.002 0.4022 8.004 55.82 8.004 64.72 8.004 1.7709 8.004 0.40133 8.006 55.816 8.006 64.706 8.006 1.7689 8.006 0.40047 8.008 55.812 8.008 64.692 8.008 1.7668 8.008 0.39961 8.01 55.808 8.01 64.679 8.01 1.7648 8.01 0.39876 8.012 55.805 8.012 64.665 8.012 1.7628 8.012 0.39792 8.014 55.801 8.014 64.651 8.014 1.7607 8.014 0.39708 8.016 55.798 8.016 64.637 8.016 1.7587 8.016 0.39624 8.018 55.794 8.018 64.624 8.018 1.7568 8.018 0.39541 8.02 55.791 8.02 64.61 8.02 1.7548 8.02 0.39459 8.022 55.788 8.022 64.596 8.022 1.7528 8.022 0.39377 8.024 55.785 8.024 64.583 8.024 1.7509 8.024 0.39296 8.026 55.781 8.026 64.569 8.026 1.749 8.026 0.39215 8.028 55.778 8.028 64.555 8.028 1.747 8.028 0.39135 8.03 55.775 8.03 64.542 8.03 1.7451 8.03 0.39055
That should work in all recent MATLAB releases.
.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 FPGA, ASIC, and SoC Development 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by