Detecting transition in a noisy square wave

28 views (last 30 days)
Hello guys,
I have a sequence of number that is similar to a pulse with noisy and I want to detect where the transition happens, but I couldn't get the correct result by using wdenoise(), sgolayfilt() or filter() together with ischange()... What may you suggest me to use in order to solve this problem?
Thanks in advance, Madjer.

Accepted Answer

Image Analyst
Image Analyst on 30 May 2020
Madjer, I think simple thresholding with removal of short pulses should work. Just remove pulses that are shorter than the known width - than the minimum width you believe the rectangular pulse should be. Here's a complete demo:
% Initialization steps. Brute force cleanup of everything currently existing to start with a clean slate.
% Just for the demo. If you put this into your own function you'll want to get rid of the close and clear commands.
clc; % Clear the command window.
fprintf('Beginning to run %s.m ...\n', mfilename);
close all; % Close all figures (except those of imtool.)
clear; % Erase all existing variables. Or clearvars if you want.
workspace; % Make sure the workspace panel is showing.
format long g;
format compact;
fontSize = 20;
y = readmatrix('a.txt');
thresholdValue = 0.6;
% writematrix(a(:), 'a.txt');
subplot(2, 3, 1)
plot(y, 'b.');
yline(thresholdValue, 'Color', 'r', 'LineWidth', 2);
grid on;
title('Original Noisy Signal', 'FontSize', fontSize);
xlabel('x', 'FontSize', fontSize);
ylabel('y', 'FontSize', fontSize);
% Get a histogram, just for curiosity.
subplot(2, 3, 2)
histogram(y);
grid on;
title('Histogram of Original Signal', 'FontSize', fontSize);
xlabel('y (signal) value', 'FontSize', fontSize);
ylabel('Count', 'FontSize', fontSize);
% Find out where the signal is above the threshold.
% Threshold at 0.6
aboveThreshold = y > 0.9;
subplot(2, 3, 3)
bar(aboveThreshold);
grid on;
title('Above Threshold (Logical Index)', 'FontSize', fontSize);
xlabel('x', 'FontSize', fontSize);
ylabel('True or False', 'FontSize', fontSize);
% Get width of spikes above thresholdValue
props = regionprops(aboveThreshold, 'Area');
allAreas = [props.Area];
subplot(2, 3, 4)
histogram(allAreas);
grid on;
title('Histogram of Spike Widths', 'FontSize', fontSize);
xlabel('Pulse Width', 'FontSize', fontSize);
ylabel('Count', 'FontSize', fontSize);
% Get rid of spikes less than 5 in width
aboveThreshold2 = bwareafilt(aboveThreshold, [5, inf]);
subplot(2, 3, 5)
bar(aboveThreshold2);
grid on;
title('Filtered, Above Threshold', 'FontSize', fontSize);
% Get rid of gaps of value 0 that are less than 500 in width
aboveThreshold3 = ~bwareafilt(~aboveThreshold2, [500, inf]);
subplot(2, 3, 5)
plot(aboveThreshold3, 'LineWidth', 2);
grid on;
ylim([0, 1.2]);
title('Filtered, Above Threshold (Logical Index)', 'FontSize', fontSize);
xlabel('x', 'FontSize', fontSize);
ylabel('True or False', 'FontSize', fontSize);
% Now find the mean value in the high and low regions.
meanHighValue = mean(y(aboveThreshold3))
meanLowValue = mean(y(~aboveThreshold3))
% Create final signal
finalSignal = meanLowValue * ones(1, length(y)); % First create the low value.
finalSignal(aboveThreshold3) = meanHighValue; % Then create the high value.
% Plot the final signal.
subplot(2, 3, 6)
plot(finalSignal, 'LineWidth', 2);
grid on;
ylim([0, 1.2]);
title('Final, Denoised Signal', 'FontSize', fontSize);
xlabel('x', 'FontSize', fontSize);
ylabel('y', 'FontSize', fontSize);
g = gcf;
g.WindowState = 'maximized'
You can adjust the threshold, shortest pulse width, final denoised signal levels, or other parameters if you want.

More Answers (3)

Madjer Martins
Madjer Martins on 29 May 2020
Yes, I have Signal Processing! My data: a = [0.264020357199697 0.377965788030514 0.0590314173498647 0.0755281322322961 0.255608398565189 0.175828003384216 0.457840303297297 0.419059495088447 0.712723670676665 0.305698519163211 0.362269419449655 1.24519702993935 0.138573667310218 0.336326372597395 0.395447080894687 0.208475941810675 0.0445980725895076 0.0693865317416603 1.08834767345472 0.0260163190750342 0.197685458699952 0.782687549337054 0.650739128776497 0.960527628866449 0.542895020034474 0.314123529563002 0.781761148542767 0.0932337186302274 0.163440608189007 0.453025414788073 0.975217884521681 1.32067226266887 0.572041842847902 0.331552642374835 0.676578924990396 0.507103405083022 0.0322233111615286 0.723345238702825 0.872179142446870 0.847765875947836 0.252943690046649 1.14716813069203 0.276629429590322 0.237991101909742 0.593803725897866 0.531978499444867 0.325531522754072 0.358589067222866 0.476300509155652 0.0806812544468491 0.478852428823409 0.283601003913201 0.551156926424170 0.970484506878429 0.677034350097197 0.579090198043709 1.09365980031926 0.0420912362310456 0.635973204026408 0.688242462706075 0.221077840874644 0.387809528214000 0.0697454852966665 0.107944545257195 0.646950929462364 0.134234276675814 0.540793379122390 0.275452158657351 0.362597013635588 0.309798919619894 0.0867714652066051 0.688931377339503 0.114963436266893 0.00416993382003064 0.294777220407059 0.0664852213596917 0.476572482206737 1.06990279383156 0.897119039759946 0.866205269147809 0.591164615127918 0.431563309877936 0.359637297948180 0.358800449426557 0.504494120849228 0.0667205863929377 0.279499049659276 1.04596569005499 1.00208255298805 0.122991958883179 1.05746142875688 1.06863609793027 0.180123341746011 0.734716315648300 0.996645113905785 0.299252583591400 0.275674906332981 0.643951551086775 0.195704437994162 0.769361454090060 0.403727290633301 0.295931856511248 0.182035228010925 0.119865558087022 0.142855377408532 1.18239649499281 0.470341592233561 0.375465697765775 0.986129609523783 1.38732120937586 0.412123824241500 1.07633479357602 0.278819102387210 0.396025835307746 0.0434618088510442 0.0561578084599655 0.181314376149730 0.735763777851338 0.133355265537692 0.234731587644136 0.837790493309856 0.0798046969931760 0.588200290669711 1.61060867122514 0.0282325705503901 0.0554362460767837 0.129404361836737 0.0662160641035401 0.684424929181020 0.779742931081328 0.431783185876014 0.569670816681797 0.264348313359470 0.108567122872994 0.761118355985289 0.0561768517389300 0.533730976500738 0.00177222916974553 1.00662586051830 0.466121279659144 0.366444533927137 0.481285264394679 0.247645507046472 0.216383573375812 0.162571959018565 0.802217722048788 0.155661914553465 0.198866081476689 0.993325241437900 0.647394613135577 0.821766997023111 0.306029714326778 0.636287703529544 0.202638739454556 0.702000399882507 0.241137359610378 1.26549553213026 0.309968413424583 0.894786536761750 0.343676807717755 1.06845585249115 0.376064510580219 0.578145308231815 0.475367107681462 0.562189527970009 0.699775907661729 0.458130299935210 0.286230489581367 0.779403462540259 1.10564496083996 0.525998475253687 0.738404542627859 0.0300501742082405 0.210825645781642 0.245236380258760 0.525073417767588 0.191084072298976 0.109869074861836 0.922125521224423 1.10160217289266 1.31231533376188 0.368350112566699 0.0470786257948985 0.287586371480205 0.559343398381559 0.238893682228255 1.27700328573996 1.00230267193286 0.442678694526809 0.210831178829087 0.901510777841705 0.276980542428801 0.539663785390404 0.681476021342324 0.280470349877403 0.664216803630356 0.363973712563802 0.277565424234334 0.0694840184552229 1.00889527511831 0.903580190465967 0.301450042489494 1.00137044638736 0.174758249522268 0.398169300894023 0.104449976992991 0.495751291750629 1.01021380880309 0.636393638475231 0.613000893229762 0.644035429433184 1.34590103738509 0.973127806701306 0.348459152594538 0.248433360741421 0.929955978080990 0.396993581920086 0.164377074202863 0.171757735682693 0.677001216424144 0.347068943698254 0.0111290287413624 0.698689477137472 0.103503343423092 0.368305624211539 1.14394556400210 0.657943403721057 0.157835042740343 0.550806502590250 0.882112453591362 0.556787438680180 0.259511549368465 0.956929048526349 0.575878640399313 0.554188948343112 0.363718430126839 0.0633476367437205 0.891399797406911 0.292647423371430 0.541147350178319 0.752822884922359 0.372513035844437 0.478647145259408 0.953415124074802 0.751991728369139 0.349660962414065 0.725190665714611 1.30692062374131 0.743183443191084 0.385895201418288 0.00919164009733186 0.419885712059845 0.153766358963939 0.451597944081905 0.559341332746206 0.844519321515427 0.214384154259318 0.161921006415695 0.0789674480147935 0.214323195217068 0.283065166643037 0.0790094491758297 0.329897562742391 0.155708324667983 0.922022416708930 0.0365798807600126 0.596823088736665 0.213806911639364 0.394385117374164 0.783466307150625 0.344121180633524 0.339293447654375 0.773685347333296 0.132921330531050 0.0373221668817833 0.0283458462928265 0.0872381500660824 0.159446253893010 0.804592100612365 0.308777619057844 1.38159660348763 0.00960098823758146 0.631978903858685 0.257078222770909 0.567964134172217 0.488113786485198 0.395111565439561 0.530134041135008 0.153162063109320 0.204871405708494 0.296017577781610 0.312016508672357 0.476425078461600 0.277046237148795 0.0636176189636440 0.335121668483293 0.0992906130689309 0.443262627829831 0.290061541308830 0.148815486471706 0.476465389733342 0.142483526025577 0.183856496600477 0.107231309574490 0.870159744261878 0.0713910121685755 0.202264135021030 0.157438217959612 0.225228299628428 0.744604813770506 0.334764445353093 0.313504770441346 0.263954071132348 0.299346700439584 0.117098647306331 0.130990614539150 0.501025111619068 0.0551882882340395 0.171792823938951 0.389413228063331 0.485826194691707 0.308690345352261 1.08538941302403 0.0341576426033058 0.657325479965864 0.626707801245671 0.352693688705278 0.558018414697956 0.523665010965653 0.706789080591331 0.258225834783660 0.0866684077388946 0.666827045295804 0.396931995980750 0.776167677633705 0.146642207125698 0.157529992609309 0.0698162994252355 0.397862304424993 0.0114961509509018 0.481006338996278 0.642621808671921 0.536305072112705 0.706375169295024 0.0485283070550699 0.0646131614587446 0.770905905250024 0.266468636593913 0.249979830320791 0.0842117984637035 0.458958637869296 0.253801772339168 0.234844800020779 0.516024815290093 0.0172905629657923 0.413907913137443 0.754072165290826 0.916618828726471 0.488971605467419 0.115982618370002 0.645138431558469 0.0467163752402897 0.265535202648295 0.241426770510258 0.169897596203396 0.00739003117875029 0.00617124492568201 0.406762035695624 0.662655869919179 0.167612885894074 0.0234960179813634 0.603607503283721 0.0176078558708912 0.843638100845129 0.625623164414008 0.405547351901021 0.823665157305565 0.301444362729390 0.864908382990444 0.0697733032083462 0.649562308235469 0.966594648877574 0.590477289049672 0.378439275712289 0.246367583416888 0.210910325313565 0.0431545983905001 0.142322904086002 0.245980880562144 0.0949647792520010 0.149411290865007 0.208346590962733 0.292513305872619 0.287329986076396 0.0443958320508964 0.567963900247317 0.392811457083600 0.0677643868211928 0.201107780696710 0.115026776284683 0.00137939847459768 0.354161147266937 0.855547236176374 0.339515026353600 0.333148162052965 0.804330341774349 0.576014436032585 0.286614185965085 0.687617065322201 0.0461251179472281 0.319917890665334 0.482668943888558 0.381468380412515 0.439011396746016 0.305008405230750 0.327108295180805 0.586027628928131 0.442556669960359 0.358396459306021 0.771159283835152 0.417379526683056 0.296353557057767 1.21745012758487 0.330249056459672 0.336625860269755 1.00100320892765 0.00890427473575047 0.213398621353431 0.118061243343213 0.116892853419558 0.462583935684362 0.0639355681761198 0.333295179938799 0.617004559414982 0.0666427060767048 0.505593255740416 0.336142948527262 0.000982241440515752 0.395184516367476 0.606855132992597 0.0791755799346843 0.184337105833251 0.400192393352314 0.00470843043059193 1.05081997606367 0.728769864256438 0.839827571119515 0.597646407140341 0.0780442481911463 0.0326692352701495 0.133883223599010 0.526375088138026 0.0857439224716007 0.290262024944495 0.915185645159830 0.651273786469135 0.274241806759017 1.24829936584351 0.546587230234230 0.130254460682621 0.598770605249829 0.957606057066298 0.0627556582295951 0.0640252440187160 0.0165211759032086 0.127104640851656 1.24434950619337 0.760588355127991 0.0451791744045150 0.893813638368458 0.197776770900044 0.599874136577966 0.256222889840267 0.341374702228930 0.0701145883190029 0.0386248116285673 0.464602626115524 0.396446851488301 0.562465916858936 0.172286664792173 0.287816812450745 1.03396704769617 0.0764494618275619 0.282037412087886 0.390204694594067 0.130463725670240 0.443501819565331 0.0965217275228509 0.397930237114644 0.0508374235043760 0.495382255215903 0.481991256420423 0.148346638111389 0.721352432218962 1.10187757068793 0.846233075773778 0.525088373437465 0.00625312378194950 0.215561823374535 0.680417088388681 1.00816908938208 0.280214823566505 0.961147961868976 0.134776391837830 0.650316341081582 0.250072398964319 0.359364253588658 0.0373415695747230 0.542633316053656 0.975642387668886 0.0482996483036327 0.155714191020425 0.745969009554833 0.191284137825678 0.615460944846071 0.656650566464141 0.397765541389523 0.374090415229084 0.349848720142314 0.933824911216739 0.364477867125791 0.762673038722011 1.50653524098002 0.155550898373493 0.0842622503184421 0.181554967005938 0.927052712421766 0.290949827545606 0.455653100610113 0.178811428157887 0.700155929310371 0.915077388812379 0.567892082674429 1.31064022696548 0.311688360650935 0.115038910339030 0.696518074021711 0.0760626288706587 0.0109429962406164 0.530826306796933 0.435362052164851 0.0208305915447290 0.372224641913689 0.550202292685102 0.368310356227053 0.265768202700963 0.497172066887271 0.702091563357748 0.164429317258029 0.167833378422316 0.751279540249282 0.242476442599824 0.491487965961723 0.287733334552979 0.253961257630007 0.691934628115398 0.104393009051616 0.122431667668888 1.48075229212857 0.265103217276499 0.112418226255560 0.0620411971471722 0.934730673214603 0.191520989637554 0.000924677238698480 0.293597905249232 0.726921403559307 0.263089732318234 0.279248710320536 0.130986769923100 1.34612709136428 0.406619417779619 0.769518244329988 0.710075213946863 0.239352050168479 0.136636915123481 0.438277850040712 0.888292700188979 0.349950536956133 1.22999197415224 0.199485986970557 0.0423595880425344 0.734240744378301 0.111002826805103 1.65162513467984 0.125533797686967 0.224069318344476 0.905481883071563 0.217154440602577 0.00545909531271863 0.0407700229969252 0.179495996322227 0.602189728628488 0.169170364627807 0.659170170367903 0.0615284736802877 0.465192428935805 0.292320705632647 0.479692065514781 0.660818605343430 0.255528106681407 0.284605880274658 1.01429093530241 0.569510155172576 0.697465863573366 0.149900510721952 0.679169023752252 0.590499111856899 0.263550155118160 0.159086365295850 0.754210586089515 0.214025669956772 0.807201950932380 0.449641303635123 0.915806890669631 0.0726021135776127 1.17234890681647 0.363899215164647 0.141559423601870 0.106966557336589 0.262918380865750 0.298456806514324 0.137580074043438 1.09455720754455 0.718140367895326 0.00419366557326408 0.204386028704976 0.712394211414437 0.302560632305519 0.453710833926487 0.0626849885190772 0.513357014793418 0.857363438038419 0.389345484457871 0.507498953406410 0.0395853631252138 0.387153343478328 0.692186890471230 0.154395837812626 0.620599515691604 0.0456596809002120 0.441859547378456 0.823015426548996 0.223162398862161 0.317321893426281 0.212655907632954 0.658215852989343 0.0257618453560505 0.357121034307667 0.186350538579412 0.496090649166983 0.235364837116421 0.0228020494421178 0.0394446309728201 0.570580999684539 0.0752113108003067 0.0229437754030961 0.338961576163923 0.439897420413743 0.120700167173976 0.455372333648880 0.778989624635693 0.0511022819541089 0.120353429690343 0.0848394395515810 1.32454900999047 0.348729284676471 0.174675455522086 0.0510495698351502 0.223206336518718 0.334411289147305 0.123823731175538 0.402920438692925 0.00660299036857556 0.537038329563948 0.437694295650969 0.859685227966937 1.05064867575148 0.686593207880143 1.49029310287521 0.0533803430192278 0.222818546788346 0.763399016647711 1.09158690201514 0.990051421434759 0.596216952890780 0.588653960501400 0.152971438634960 0.245668128866682 0.486867525260589 0.359909975728926 0.292009930041615 0.0834977338964175 0.366007885481942 0.337221045433240 0.0529129055739301 0.776725605117916 0.424470902856250 0.544075015359585 0.303077611264046 0.361636038427448 0.0512778996617002 0.0464997438493860 0.750789032278511 0.659783862762675 0.106923349582995 0.222500965582623 0.418784241742614 0.140941315762013 0.0930000176895231 0.244786174842146 0.658399882640303 0.511269871889894 0.731858648823715 0.585606232775479 0.829580585654744 0.161216083373534 0.813240720995767 0.0337423016194500 0.0891144596991038 0.238903425640060 0.255708518248383 0.233273617579602 0.0329275257611633 0.142360992512539 0.119889426738778 1.19615413205751 0.132449924748456 0.960591199052774 0.181221640546495 0.416057525990413 0.392179676987914 0.388973868941991 0.240622962822528 0.00696741714176004 0.987429869782747 0.433948464146364 0.0175029926828326 0.394352121028700 0.365433479226706 0.947167494427596 0.781545072144462 0.409967790110399 0.114592707036419 0.508432669339162 0.932605665174598 0.501003184392796 0.0538587439147716 0.229719082125256 0.378938409051910 0.178456237547293 0.130025645285324 0.379677238357288 0.467447035544297 0.676041009685105 1.06737738917686 0.678999250277454 0.160904058862704 0.591162482691507 0.503716347359180 0.163113295481154 0.256368949068566 0.0378480773723092 0.254624647892600 0.425980154500369 0.871745502492372 1.13664061558856 0.766872291173566 0.567275893987063 0.650870528492985 0.0936681252955160 0.101185117175365 0.252407861168210 0.441485196548181 0.180225781764727 0.129877701209898 0.483474332923743 0.0477456359384049 0.675649060876200 0.0131180035211274 0.390031285618768 0.0431309829157946 0.289620835626263 0.101864073914802 0.331115986396274 0.235960613158650 0.673858046168572 0.189883946703713 0.206781586732049 0.638710018294023 0.776385189018614 0.475802808179283 0.168625181090203 0.498428153015448 0.212410257631231 0.214820035514702 0.241273368678161 0.379652191147755 0.310104034523541 0.0234145137691499 0.0942671461773400 0.346349166497518 0.470541998243908 0.202532380979617 0.190997358009789 0.224297492111262 0.0158192776800651 0.390951653499619 0.502722832564656 0.0394937404504985 0.221724487286127 0.163953088445719 0.251556588408071 0.986449380564083 0.458733017082936 1.05232570000773 0.0756687196280203 0.380387178571394 0.365223834545731 0.220529085360048 0.304525345448134 0.0711816051551461 0.806172597628563 1.44021734867504 0.171036410962990 0.609156330714822 0.356974142259793 0.339044000729597 0.572585209843561 0.363304100346602 0.433809720037791 0.156235844765118 1.26006718086706 0.150591815682827 0.224703746497285 0.741994799880096 0.586736689289955 1.70475532115619 0.683865097852128 0.802443109605448 0.751001995352575 0.375440449295323 1.10866518586332 0.513899073049910 0.0899948321759598 0.261353568285210 0.177588980011112 0.264746442639200 0.0327951624945298 1.00655217795062 0.241536264273588 0.118602881181393 0.0105712864872073 0.538167127607063 0.178557404794589 0.470534136330497 0.451609810430276 0.399784229519452 0.450261989679180 1.02136970332800 0.803612958857436 0.696906212042455 0.385150160095258 0.296508840005952 0.761801233656765 0.480905502883714 0.550129445186770 0.233015386568019 0.549003612377171 0.160957536271682 0.0900034440219203 0.619385883170512 0.616623676272688 0.589679695120749 0.0105937934047297 0.209651362075040 0.176452328875814 0.530900934976280 0.230065288303622 0.143080183580719 0.106608591464859 0.0855915956951044 0.123561664674344 0.419530986500364 0.316059134354169 0.590296583080595 0.111790575628564 0.193641790418671 0.283896696599815 0.465045004141592 0.977659043574461 0.442892583669016 0.0125685206424223 0.440543680475750 0.252575952955192 0.0877014883779886 0.574894278716389 0.230621608056204 0.0180788765424059 0.0905081114141458 0.674820649954899 1.13062274581460 0.317594534322460 0.0437474827415524 0.819846069055803 0.0162447617897530 0.0412495928192477 0.0153079847254415 0.346704676259774 0.00842198136826342 0.388391278988633 1.96669710593153 1.38881928691609 0.937271619877311 0.763906807250496 1.63716501759997 1.09032580173297 0.543206886068833 0.595147892433628 1.02301424400264 1.19203672651192 0.788025727038156 0.857886350455116 1.05701815847238 1.00620604831949 0.987402996725312 1.23588124651471 1.18362358892598 0.821455484824116 0.355301625338536 1.89557295142209 1.00096764029192 0.908786758594087 1.18364302963064 1.84965489025722 1.09431051486485 1.46455940911133 0.660710397565464 1.25766373591827 1.47396738607745 1.02118623702770 1.55912886543067 1.38857499461472 0.948922399775193 1.12422685606240 1.29978656109217 0.997536032442584 1.71651280287376 1.20417824879371 0.923519878055002 0.963500260495549 1.23654975355861 0.971948441481675 0.979513619408576 0.952902100721724 1.16570340330843 0.948539268436729 1.31396662251511 1.35080696819889 0.920979762692533 1.19848234709088 1.04758304965098 1.58791995915915 1.09442011211938 0.584879175950166 0.613438848345626 1.00020964249684 1.47597322786368 0.913094696333396 1.52131683846483 0.764784240429519 1.07063760568857 1.13444346934538 1.45445865208921 0.873554527684763 1.05276134258903 1.48881472786144 1.13128874811395 0.949955490302642 0.988082509332853 1.35718333290467 0.834625936770841 1.27784856335425 1.02761443968500 1.13167423740020 1.01938622101078 1.77298480359371 1.37111295561322 1.49418778099953 0.674193811105429 1.05045736174691 0.829233965418882 1.40973000380588 0.916573276375197 1.15013907111681 0.862258456412992 1.80255009107609 0.965503731579436 0.498478279173440 0.982219529627276 1.53679176726384 1.54928159852617 0.917922829880094 1.12443285858276 1.77080847301789 0.881470709502322 0.617002307478645 1.62205751501561 1.07961547592617 1.07750570507264 0.977081229760661 0.901514358968222 1.11613391418838 0.777957757578750 0.280273520925180 0.762273086459715 1.43525770064862 1.26805586710836 0.677749208221460 1.00420263234423 0.627593410407883 0.992214650007385 1.41145009067462 0.992330231971579 1.72556508134624 0.971693612957672 0.854164472002273 0.715055545558581 1.71743729616147 1.00508461233042 0.884371858521525 0.615641766736739 0.389224933412745 1.04266529212220 0.318237978085418 1.35287526119946 1.34115371747338 0.701539161866681 1.90272247229467 1.01598533522482 0.933866596186443 1.21837774397285 1.28856453892607 0.995592066481043 0.650946350345065 1.03271544389916 1.15225643898792 1.08072955709723 0.691123825045895 1.14059078116505 0.847176650800657 1.54671716380561 2.10695474282742 1.16510246391275 0.993396920770976 0.364190469187395 2.19224704246756 2.03721609284725 1.12054596019668 0.589473118370414 1.08576171038933 0.846201727316159 0.450183928232695 0.756112974409997 1.12553875039607 1.02165476027606 0.946078887598634 1.07064434110491 0.980335778646859 0.107481822847058 0.996216467431969 1.89594942866352 1.11545803388896 0.553744688675897 0.953283877789602 1.31695191514215 0.631486411716880 0.821149187641569 1.03813284834905 0.863595531205062 1.28942307672259 0.595289213897133 1.65339929283686 0.956050884492825 1.30014208431260 0.993977992068570 1.54422858826028 1.28271879478962 1.33483034515060 1.03256385893171 0.602526856801605 0.930469335435144 1.00303885045790 1.17564782904597 0.954225960574045 1.12408523016595 0.701228965674097 0.721833722275785 1.10973682182926 1.70163310356393 1.09291595282728 0.848787891569775 0.193549183149080 1.61083895271491 1.41642587517532 1.18606820576158 0.982790254413963 1.13722459183878 1.60725101073998 0.920651288816687 1.03994410894209 0.994727330861275 0.945533493197787 0.738222724149338 0.734934139065035 1.51593164387576 0.945791863900672 0.865028125918884 1.41448764610198 1.68551338980056 0.835172799308940 0.583402468849298 1.06181837359093 1.98537828926335 1.05938489124984 1.38344320498083 0.362414585705453 0.857579395511348 1.17828913912376 0.903238137126783 0.981436978667164 0.971254564385195 1.66894035471973 0.322317605466271 0.591046012510727 1.22655225476761 1.02465225879991 1.06023444382134 0.846228482493422 1.31354623777293 1.19917440406566 1.09820259410957 1.31307358271410 1.05735139219810 0.812156814912773 1.08994852071158 1.86208988787052 1.08680585326473 0.372143074328509 1.10177782030191 0.808582859211918 1.38104111967570 1.38947678606918 1.44156226048112 1.42721294658091 1.33928539547062 0.929022612191637 2.24701909007833 1.78313982275989 1.88397823259395 0.859901042360922 1.10790136449783 2.26920952085721 1.41603479518486 1.44546548341991 0.971534695404715 1.11936701840286 0.575663620753263 1.21145383277781 1.81737995736446 1.34279281807357 0.385869488593369 0.997013150799725 0.987836793075173 1.45603994285320 0.992246922025544 1.15161524753619 1.77372003944612 0.789944640703973 1.17057853152746 1.02426113591937 1.06414132381393 0.977433546082569 1.39914458159388 0.903954779185274 1.60781685359710 1.16647603250130 0.768691847585281 0.968414468868043 1.04515543332985 1.19639766261269 1.24499767957240 1.04853905234889 0.525970391956584 1.28444952459348 0.632693273696919 1.10922859918392 0.956417861102882 1.39304209087482 1.13059839465260 0.535603669181334 1.04427988092626 0.960179454250518 1.04307996540978 1.01085737692313 0.914858520002917 0.901263392890442 1.78297900079815 0.892679335044079 0.967045340357119 1.06900648813556 1.39042472764766 0.717560645467110 0.578561452183973 1.03933949735080 0.823789737559186 0.749069494883045 0.999928122515888 1.32361063614804 0.958179516595312 0.634570517698235 1.03886175891922 0.273819412466862 1.23782062084448 0.994724072480168 0.819254238138257 1.33400233884285 0.919828253355980 1.04849556602487 1.32846720585224 1.24455277985200 0.869718377272720 1.16332520137785 1.17366826142528 1.15301834166537 1.27018261134955 0.834271538846208 1.06868097390219 0.929483631096618 1.00016570503847 1.19135663880452 0.690938393133903 0.888255133800602 1.04643152214282 1.28745701443695 0.453748046989074 0.917977069601049 1.36785066569570 0.387543980336376 1.45887237154292 1.12006304777028 1.15822366884865 0.616551890289134 1.21573273638343 2.09490811018867 1.91544876755414 1.58925807245968 0.836285301121112 1.23079227957915 1.17693897183108 1.60312605510408 0.678348331282344 1.03518560701768 0.817227852679909 1.14531879921660 0.996288966573502 1.21938288755988 0.952111231673588 1.82590327231802 1.15409196935839 0.913192500102750 0.792901001044558 1.56892437253437 1.11116571856845 0.889674740816889 0.125981481316500 0.782410621307087 0.886938412157327 1.01376172077169 0.987413940656383 0.966220619229802 1.02383836965388 0.977717178202297 1.05686634978798 0.930127814981761 1.63716966608217 0.900624761174903 0.643762152353741 1.13894263236171 1.36932078361336 0.562771438668577 1.04398760451903 0.133426094334592 1.56796438613143 1.12122550259715 1.01200619687040 1.93173152927659 1.92186559360784 1.09326927936497 0.895324939132751 0.562501732712295 0.792043207133287 0.926673870066313 0.998908045459813 1.26478201915124 0.973339890517879 0.970988986782151 1.05337276646126 0.994069993966184 1.66087924782485 0.838267626632855 1.29781782486138 0.881398734446909 1.15079321816159 1.26328227926460 0.818124528862040 0.887828784641745 1.48267891910361 0.881032727043358 1.07449035064455 0.867528253830153 0.937356472452645 1.10646438989958 0.853591318849030 1.39568623018771 1.11269699775548 1.16054446100765 1.41556079311983 0.715827094429853 1.27339541123679 0.984504727163155 1.37587177279575 0.542247813041644 0.250100668823454 0.697193517738319 0.814890108489755 1.15252248148570 1.93532888271728 0.994837341889532 1.37394222569030 1.35678285611835 1.00381661531407 0.926370240300999 0.720647562241175 1.04112168714512 0.821900037569624 1.29587943045143 1.14109812354052 0.940058631829647 1.42238114580486 0.565673462007260 0.845071637334684 0.986764792670645 1.02767898807572 0.973697185310966 1.01227333693236 1.25552586955465 1.42789652979730 1.03731736879308 0.633304874635892 0.279613093821648 0.962274925109768 1.02189979698718 0.565759398675829 0.674673566461683 0.997079996989946 0.303653841327288 1.00832373482493 0.805259943039217 1.07796305869133 0.826597963714572 1.49680143438778 1.30695797685397 0.779004099504536 0.975666646192760 1.32161876297404 0.994647886690501 1.08396671678920 1.50082732466367 2.11544475193496 1.11027432304123 1.19840500515052 1.01079721791318 0.970687595294240 1.31067190681960 2.36342358884975 0.837577353212918 1.00465546996743 0.864101526297925 1.34308421889734 0.883428254225969 0.427608363273059 0.917740403262095 1.22004262165381 1.48708261299477 0.926681358714787 1.39774761633001 0.977217810212092 1.08702221559821 1.11669383370931 1.05991287145201 1.51164920261876 1.09509096396966 1.36240707095417 0.818700857783226 0.851516057802489 1.15697647574532 0.829787371428300 1.47830110125416 1.29295049326608 1.13539184586526 1.06846205248605 1.03002768893765 1.07136740336889 1.41194557444145 1.25391762588154 0.967855379973452 0.734730834642377 0.888775243043332 0.689022123362361 1.53581952071391 0.998876656686762 0.703205701313121 1.66493436131630 0.783706933343263 1.74044427550575 1.00185988068595 0.952987929131321 0.907482788098336 1.21744978904984 0.925615400819098 1.15946336028737 1.32680540860603 0.907604333202378 1.38400683315709 1.83321153254952 0.961582796414030 1.89910765591494 1.64360261707832 1.06175826078327 1.87166332327069 1.13202029942127 1.67413330693719 0.999649415363061 0.780452068483237 1.32587568218361 0.975587207963356 0.948448650458884 0.881185762936482 1.26801846879748 1.06396423026781 1.06792690176441 1.15002968003675 0.877911702691662 0.810820166338894 1.02314725256724 1.36201221440032 1.06186742413773 0.801694788444156 2.07896302589039 1.18470768364194 1.01395056570645 0.603499789443180 1.81270600361931 0.974149337490838 0.475796159209525 1.15630560856443 0.183040682616068 1.21563820705055 1.72263342102170 0.359593087026082 1.15917368166881 0.873900053132560 0.526753872493553 1.17826193004969 1.51972623507466 0.897689241538645 1.11005938765294 1.06916608137861 0.967213818173044 0.898353566547693 0.814038593423725 0.522568071586548 1.69851119336534 1.08271962214339 1.05300448245058 0.487890373110963 1.25394652140103 0.975716978935540 1.19485686896282 1.40172092315154 0.994131159587284 1.59959162302208 0.835533070107960 1.43500817003678 1.08158980639274 1.39806866737576 0.504353672755509 1.14706645541244 1.18921698089140 0.938626282445164 1.13154350926040 1.51128122609527 0.966450345267566 1.49496091745751 1.13009728405991 1.10325609984821 0.997021238654306 1.19099236124347 0.764792420463286 1.02883026109861 1.50422484892869 0.484313546551455 1.39576123730641 0.898309075582973 1.07545049239313 0.756415741473559 1.32105288257390 1.01424714744942 1.08385028957563 1.52886272335304 0.980057267918941 1.05719733811850 1.00081901689407 0.870385133194622 1.23872376134421 1.17259859036664 0.640821135117115 0.857520111649198 0.504896072466881 0.691264161324510 1.48850997399034 1.30541720036135 0.762007004065170 1.10609072303675 0.747898865015072 1.02849737372312 1.43264190273111 0.967142767880211 0.799508022800578 0.828439642146721 1.21128156355448 1.38112619503687 0.539489306661346 0.927410302989039 0.944395652353658 0.370765992675244 1.12168967436757 0.845113519896947 1.02665237292015 0.992465955622043 0.969203498197697 1.38414705394355 0.964409118333439 0.971888080548129 1.11631699831751 1.26610781049660 1.14168169178796 0.920753953936172 0.934059013146293 0.941497776208312 1.19018145234654 1.16845795544922 1.05893384018896 1.10080579698843 0.759174567018027 1.12329634579377 0.445460955592650 1.05790041539010 0.942169924331258 0.727097428708609 1.03532255918445 1.15685751942152 0.945982868941569 1.00522357731533 0.115534413814929 1.06784443344424 0.657292085867362 1.43410409744307 0.261128751994459 0.920749881994621 0.826270541034918 1.00336556880668 0.861368069799845 1.05741212907135 1.23392771966782 0.892199189382294 0.170551090887028 1.50364274278921 0.597013090163336 1.03624181513719 0.741710223762502 0.937292565518786 1.63246698837579 0.960579768128294 1.63191438828693 1.20777828253039 0.965439897911913 0.821812338063169 1.53730881995487 0.969962002121954 1.12926864549606 0.640683375606815 0.729857884105372 0.162242012031967 0.473812764266271 0.958584748563749 1.59296959824276 0.960486739430491 0.569896443097816 2.08983141749597 0.978621160579440 0.796633652206324 1.04175692583046 0.936805276549812 1.52910853745121 0.422226629913752 1.14087581013428 0.925051303978061 1.12542912862119 1.80132508031304 0.984726267578286 0.968333986509594 0.869441642243725 1.81924932751957 0.614443991689338 1.48483397402000 1.03962479879027 0.918226540970770 0.920632208958590 0.884893315660305 1.03211365351332 1.09451429297952 1.48795778151272 0.806271901138261 0.942798142042678 0.537728022428637 1.02652889475073 1.16034793780136 1.18418010229596 1.38239342576221 1.02447704645135 1.22829429805156 0.558540874114599 1.27025361890506 0.743760900106277 1.01529403427635 1.08389235500523 0.867407679117490 1.02849579427968 0.971215203332605 0.965360894506784 1.56706777090847 0.995544888935330 1.01692026681080 0.777837163083938 0.845802247686604 1.43871483893442 1.03278486968590 0.455000592821123 0.897706990685099 0.967287003393382 0.547003244233302 1.11032966109085 1.14126414561245 1.57002442690044 0.959564596183070 1.64175137554452 1.73751598555436 0.872307924013286 0.437594799859212 1.15657387184712 1.14347855401986 1.53786173826754 1.08073065405951 1.02227822095961 1.06945433768486 1.03827851214912 0.968228562907484 0.902918565712553 0.989688263170125 2.04941228597439 1.11600805651680 1.07375376565386 0.770012004102359 1.03998751356864 0.962895538008580 2.44914923799944 1.02858249317086 0.598934255350239 0.794768936727697 0.872437948759449 1.31835685532964 1.38160594464651 1.15603196346990 0.882416983695732 0.369987395193071 1.86824572287023 0.892910792019159 0.865732494078641 0.959657459252458 0.927525519921156 1.68532593970159 1.30582485814125 0.443669081340401 0.895272039281076 1.30817783971517 1.12251141611086 1.06901013136944 1.37888084632360 1.06551912912568 0.370769081125436 1.13175625576182 1.53077344784023 1.02739111135349 0.389361336830743 1.41603460252299 0.963696031959563 1.65392883245838 0.537335288662494 1.05446067851522 0.990510534919545 1.00262721006431 0.993749732403525 0.897173920925479 1.09026150920139 1.25508219189459 0.910621115719665 1.21704532605576 1.08298494209709 1.37499173991852 1.66975505131055 0.844432762528527 1.18101311188376 0.687438593728812 0.723103259112826 0.921883293891751 1.67220485205912 0.879855567349628 2.06134073600391 0.744008195226001 1.04679142940405 0.410636642651946 0.497078761649720 1.10466555866514 0.957033375555425 1.47879870059050 0.873965649428119 0.201753942669104 0.799706038879516 0.199363248041447 1.03184733734796 0.504809572042899 0.141880009905239 0.553359517492718 0.289358872145986 0.737034702060165 0.386506001326970 0.666635744955719 0.552437713875868 0.0761109686051696 0.669208652474255 0.116578769178290 0.475524364498049 0.176741138281006 0.800931677726987 0.838719070648594 0.418409159141553 0.210527647467991 0.238492831002724 0.0641719789067852 0.287411502781442 0.574902467424944 0.798065723104971 1.43210303047369 0.201293171517550 0.225677935904971 0.397122536362429 0.573961206050560 0.637673035806207 0.0216756330918432 0.129851768598906 0.0707051544494698 0.391550174442497 0.978177918304156 0.374169200769686 0.386627546262063 0.696723309226050 0.505355380341503 0.646747676830948 0.148559591619413 0.913906129237635 0.327081669900770 1.06985028241987 0.888552309337725 0.517932699316901 0.527421312377401 0.414550271015700 0.101098165447761 0.0741337234908755 0.488071159439623 0.739136874104162 0.141214901463278 0.0403533391502005 0.615881117901065 0.275142570408134 0.944819856596261 0.456354302421903 0.423007141941097 0.745619099804099 0.102054184488293 0.0739003590854169 0.783808180520923 0.397132992032081 0.653916816494153 0.423829753329267 0.181031563700653 0.919824068625810 0.364281630455728 0.378603777485597 0.716172887089171 0.584729157584833 0.274394464497150 0.509905023347212 0.266945156260632 0.374568093292842 0.282306375658981 0.173699373720685 0.470624184205954 0.353332491069994 0.281678714196142 0.939252629723617 0.866978548667023 0.152961970208816 0.192122079178752 0.272379540512655 0.535733705130935 0.0738636064310245 0.979549818491072 0.375509780570651 0.505070166000414 0.308902838932705 0.178543518493475 0.327672528879581 0.0923425926118610 0.525864071462464 0.668121894259125 0.682000984024154 0.214352431032223 0.743782664744041 0.216696135816347 0.203467374633122 0.239769217122645 0.217703661731865 0.507668787422050 0.403634696463028 0.976269940892369 0.567308452600843 0.101243597144924 1.13961151616630 0.229962647484173 0.412941360838874 0.0460936746468599 0.948398215965903 1.15938548034154 1.02398821299014 0.702438288389413 0.526529262768931 0.0964745579775715 0.0440701995324745 0.343235829450706 0.319902235600481 0.0883984751570427 0.600864939513296 0.175744129648711 0.00962890787051462 0.0744159066430814 0.250064981390986 0.225914192288981 1.41383305818464 0.443402052810127 0.0641162586446162 0.266626814851031 0.385156672351955 0.303535224262776 0.213942164726387 0.811490416935024 0.455102167883919 0.827334022873608 0.239232408410670 0.542205418130870 0.545705309766956 0.293718499192345 0.491924360574230 0.0888872638198725 0.880451400907567 0.760711598448142 0.0520324167479534 0.440045182974616 0.624212588863348 0.843481922989823 0.0744432210664931 0.707312745820755 0.614803703998642 0.548407221907070 0.674970319242324 0.0603298691266207 0.348370025747831 0.613496676426683 0.248574478211987 0.720242942925313 0.370461184880779 0.113047152178305 0.253064624120747 0.00734913976657603 0.476011860999374 0.271452495309308 0.524732421118319 0.164035315261643 0.120000069850301 0.0228903374655319 0.128229725476986 0.776652293443513 0.149056543604720 0.597247649947337 0.0329240786250320 0.317498217873025 0.372635950247315 0.679912183037659 0.255764915583717 0.277555556641435 0.124626435133221 0.323146130808256 0.0743810142278703 0.634680795290777 0.0314944250564375 0.397162488477427 0.0340502772151983 0.331921136235244 0.348430758249464 0.669343674447069 1.36950136789792 0.411636984779195 0.195026948489705 0.409433427578687 0.321186685693104 0.999603470806621 0.0581341630053187 1.08804483977183 0.523355889935236 0.0848205521027112 0.263287678404300 0.205415796670382 0.145159701621734 0.104235512781494 0.503050899272397 0.255541807475829 0.159151640538194 0.616608202040139 0.572349231028263 0.170139129190938 0.709071705473247 0.135046874196487 0.440559501840649 0.108543163889187 0.734985736620148 0.430528336684248 0.440062153329438 0.0386117946478788 0.215498447736416 0.175129325036158 0.422912942566744 0.538268487614654 0.248275884489756 0.311056726474277 0.206485052738381 0.643710405349716 0.521562552096652 0.589184592229648 0.185064100195455 0.134778585555580 0.319317973348989 0.879844821755167 0.0167116565986880 0.341441180301448 0.540010838941634 0.0705944173980642 0.271365555715996 0.967457646185184 0.962516376595383 1.34509377188900 0.527050024177631 0.721957124693396 0.0914346869334624 0.218767810246337 0.385199972245564 0.276570406089710 0.111794264363084 0.173372603765210 1.10837418932046 0.462315623416730 0.0378586929728422 0.233724960509711 0.473378532325098 0.333753501386712 0.168145012118642 0.348835032661771 1.15547068427675 0.141599770410354 1.49784549602659 1.04473140707157 0.711199442635398 1.10716145115770 0.317675381537620 0.740723759474670 0.113655534198233 0.595182646429210 0.247413408684615 0.831076792022887 0.690700549984974 1.03846677572027 0.420408718711314 0.144132549482566 0.384599724751535 0.0664758918375454 0.198138637061271 0.131929128187102 0.640066858632955 0.169282666607174 0.582978004116153 0.0113894202158463 0.666729506481969 0.187047004458716 0.573528024659907 0.756904276396078 0.0254459061887219 0.320414065552310 0.589356992386758 0.830325636487952 0.332442856311387 0.145651279006995 0.763005403905791 0.565518642924243 0.587209440032271 0.145827242850415 0.348202966707150 0.197389734406657 1.20127270550595 0.346400318933279 0.851349040337282 0.0481106612955032 0.282632535465600 0.396914696071882 0.0673086933338844 0.0481896990725972 0.271077546364305 0.267658102127792 1.19049945124876 0.0556868696798289 0.453624478520101 0.571855632636190 0.524888385406394 0.828050537753383 0.553883638543407 0.419892038949776 0.177367616342232 0.514165979330196 0.691886975855691 0.0149511204952701 0.511571451979428 0.0333224662880900 0.150723607498823 0.277917594859049 0.258191782466874 0.105726416075894 1.36404277112779 0.489543438444690 0.315902826839733 0.309124724392620 1.34868663435786 0.257170371841616 0.368375128467805 0.344984588566551 0.0105104477611632 0.583735968461000 0.306960878855800 0.376430518468052 0.767481127881966 0.550448254573140 0.0372655336253502 0.201249804161479 0.772900917187430 0.478364069874190 0.482575884441506 0.0559826445776219 1.18318474405495 0.334135058354716 0.338521534478200 0.0130018567915289 0.432239042914108 0.417716932723049 0.0541564789642946 0.559659364803275 0.692389719331795 1.03338900184646 0.893983456587374 1.14259237863639 1.32444235131888 0.429653727913416 1.18915655638572 0.0508094868298229 0.497570272727801 0.387101830776826 0.447465996931684 0.583568127903366 0.0552215034505802 0.856854455662920 0.210446533942156 0.696744939958993 0.0368503362495758 0.382565129672604 0.288794089385185 0.0301922912321810 1.19785285667966 0.460895449094945 0.0556652283916224 0.821992076249836 0.914928251608651 0.371391408774145 0.796896451043675 0.142402101096177 0.253291637661908 0.731811652644112 0.164944449288701 0.320093770995748 0.790475619580051 0.164842316472437 0.0672256455326011 0.393653098540312 0.886821328865645 0.161720239387271 0.135075593626314 0.350026531431213 0.544638308562758 0.491784332564339 0.147493887814179 0.0815487062294826 0.673431912764665 0.520019127325406 0.440789342017531 1.02068795411528 0.456535799077233 0.556116272694623 0.00415154863653803 0.114559527447341 0.391807420308039 0.351476937681630 0.260478709067138 0.426327743287047 0.284769563686863 0.101231326180563 0.657388358107599 0.101445033070646 0.00915794743127736 0.550825084207264 0.112810587437440 0.0829318754873550 0.573518737525595 0.312239047415763 0.151829828896497 1.15925565693055 0.290577238470964 0.291191831340664 0.0991998841466262 0.614312501399218 0.667115164988905 0.190278014773496 0.862495585236205 0.212451297516218 0.536040601442875 0.275627931951900 0.176328922500918 0.148348409115581 0.445476862953104 0.418435563820971 0.157768251372033 1.80901706964193 1.08800068017939 0.168003892683470 0.215366181366355 0.255520862467539 0.0879834724940435 0.146919559869884 0.0345547241739925 0.244559562771744 0.620636808371000 0.257992178105718 0.165425545433095 0.109530908478932 0.898437258414015 1.74069501867235 0.425015183604254 0.490562254701755 0.592140165690415 0.548619978038943 0.0630430432072291 0.194245398203724 0.0870946530619489 0.734891446351664 0.857970733788512 0.539078903133642 0.554565352302438 0.133381310067930 0.273179249290106 0.0343949901072552 0.359851995766699 0.402255937593032 0.102016566388469 0.170161327874402 0.00122259060207352 0.197674462268186 0.0814662437753762 0.120381187041270 0.367851172481066 0.779169703066120 0.340288401493569 1.54947215717819 0.372665479481992 0.362105811105271 0.526201310979426 0.802164526494208 0.993298547802087 0.0223538815534359 0.844988331780470 0.238974165996359 0.365121864490958 0.883130956412806 1.23211696019637 0.453861771868959 0.217540837860547 0.417777414066802 0.913701041702399

Madjer Martins
Madjer Martins on 29 May 2020
0.769296830926872 0.792248656109479 0.496078552061443 0.194884621208464 0.473963441125455 0.309698392560741 0.00286150984418649 0.493353653874779 0.305655554749808 0.884122040700597 0.0517050190152277 1.03558419589431 0.508394308639428 0.554270742328880 0.635349297396139 0.371587238419588 0.679204600087177 0.000111610770486039 0.0683472167282421 0.435038563541110 0.0611771014699145 0.395137191738062 1.03918990666458 0.849152120591604 0.149079338039100 0.281009253234962 0.117812524625719 0.973063848011860 0.473291674073404 0.121516200923404 0.616098645424348 0.349272876656240 0.447336784999722 0.687089757097236 0.287264308987211 0.292157563540944 0.621351554732685 0.137709635189469 1.22912699272530 0.553576148503307 0.266240339539551 0.459132642278486 0.782172175338090 0.236121979973011 0.203147557731136 0.550131268666009 1.11277518513571 0.559258446026602 0.302554375541764 0.250534641643198 0.367895728744342 0.246298090635744 0.631313184369651 0.539769204891420 0.162288860755937 0.346370151864916 0.0284638726985768 0.376310084114698 0.646622292064053 0.556409572864174 1.06444883992424 0.165663998729964 1.72575438669670 0.899059669398886 0.475919307119907 0.0248566185307492 0.0324385393455947 0.0689533836659527 0.583233014325894 0.0659295726752374 0.495800440898081 0.0428170046435093 0.514220399021760 0.667113389495580 0.674671650721662 0.233912444438656 0.272141364825853 0.00366224035358984 0.294534788511741 0.258967622492215 0.473722713497424 0.517518905055757 0.718905777229680 1.02367023521632 0.380089385411318 0.526061647954056 0.443271853212791 0.566949379456071 0.0648549671153447 0.235701741437521 0.642740443855928 0.125670441497748 0.796506453302246 0.147501766993679 0.128229950613001 0.189013953657814 0.384332673445355 0.551502057818539 0.121202241096083 0.540534436947343 0.582000499612934 0.0882369079138055 0.0622933948290965 0.511405967275404 0.0371507385317484 0.408685739863251 0.285883822357114 0.361842314016486 0.609631878067283 0.693311478357739 1.17248903692316 0.0518241143735422 0.0728938022313649 0.116006893479289 0.120049052895669 0.858686088225988 0.306036844814522 0.577981299652125 0.386641327806125 0.221157170368875 0.267482343355311 0.0356823590105872 0.314375511578546 0.413544147560650 0.779753666443266 0.449408374969727 0.343713929816793 0.0619832207579679 0.232954786992783 0.129392080464957 0.481943946193659 0.0271097623822365 0.575471124020724 0.102342113730527 0.163151180115082 0.458422847820778 0.181260790508344 0.0778137983538195 0.253622964365805 0.0860610533655238 0.494299221324853 0.108367075807071 0.109592209415676 0.896865855770596 0.248522974638506 0.237291635445065 0.126981815427514 0.0823298586441620 0.00544918238298795 0.0605072041653820 1.15253625331650 0.738933312487260 0.347549575811878 0.235769981331483 0.368119282611808 0.388098022727705 0.944322166298445 0.139555653238516 0.671072785726439 0.879261689356252 0.981392006880832 0.0135494623488218 0.758142649635793 0.161507595484015 0.422467376921609 0.242776891189836 0.242503507973336 0.0685240365328321 0.236502211164835 0.227664152384864 0.272021354019106 0.164949336698417 1.38868937500195 0.141827623831079 0.522512160119619 0.299078711031699 0.745839936103733 0.575851479340958 0.506818311310009 0.368792603504130 0.223908242842811 1.31886561108945 0.531578249897750 1.00631133696780 0.275792551296484 0.502135064862668 0.429744638260000 0.124736812238702 0.264265737848673 0.245802566180938 1.15358534102987 0.0904203415955777 0.298462722126099 0.148752777443254 0.186661446272449 0.598935186734221 0.222913221790316 0.346316019167194 0.651060024697810 0.108553658913459 0.160996337237719 0.405571286457322 0.0217572630021601 0.192964488496710 0.706355818680213 0.699657237894102 0.316667328586382 0.131935145275952 0.870133839132055 0.0939005787392528 0.0177140665793281 0.797872504830848 0.501628814012440 0.369494820989487 0.00213577264161921 0.632112598478872 0.139852015251736 0.505359347157467 0.724348697178712 0.574495564757517 0.216079473059091 0.392191599245769 0.412994111637952 1.19764031099260 0.0530016354569849 0.647842899595197 0.944266013664582 0.00280576924925899 0.330373935138769 0.224525424128147 0.0698479837793433 0.0924366668750869 0.196867772599685 0.160428205004588 0.223714251568397 0.144172928154048 0.526055733497968 0.735243988090453 0.632796388845200 0.296839016367874 0.00306043289460820 0.506030500202210 0.663554959681288 0.429462557908966 0.594211565769643 1.04631345261867 0.118716028448423 0.388745488136063 0.842502388141476 0.0427789343759559 0.261371151533892 0.123880134092668 0.462125669421648 0.0509456638165858 0.0454644327669775 0.696437532026002 0.189187054987185 0.260106363843081 0.801149081780814 0.309446476685237 1.09235818454997 0.390051975326151 0.104082804501237 0.0938383420280659 0.0829542995890433 0.605251023222973 0.0581516887191549 0.177339294250891 0.209900683731906 0.204833915350773 0.145237759282459 0.00497180015810441 0.728730768667576 0.213169067643675 0.00300036353641626 0.926143215521695 0.104635788211368 0.0454099181514993 0.363837062709287 0.208176985996474 0.161205654923342 0.152656163055720 0.635032476630632 0.493340720291517 0.518637189812690 0.0606203821579137 0.0668769394793807 0.404007981222697 0.415615364936946 0.762118072573556 0.725713518865468 0.322457551110003 0.533973850715087 0.556543073647366 0.230271734246211 0.301322529337881 0.542941302056091 0.572825155112105 0.118820779792812 0.577165349306035 0.0617587720515709 0.746008497827931 0.685282092994011 0.713472628597964 0.470280749189475 0.206923035215910 0.123581524506630 0.472865928312314 0.253102262248273 0.318198698727151 0.318547224540932 0.0595767660776777 0.0537518188222406 0.645156489737658 0.278666480128007 0.135923022806476 0.431699059571850 0.655278017589127 0.0578596236051570 0.0953892015234024 0.257143902188557 0.147365882926725 0.0163791541121761 0.461899991009652 0.519251289288142 0.839508588292665 0.276863759170042 0.475329012666403 0.0271245917882563 0.221802706435223 0.101566286769961 0.873151464402202 0.933069128405355 0.523269313000738 1.03064782683046 0.738239324330387 0.323559861283860 0.0905301665657411 0.0171191170818875 0.900947069769787 0.0705727508175699 0.101527872647951 0.357148131974176 0.828158096519430 0.573746759167008 0.596984939559090 0.0340448799911119 0.851004397609302 0.747637786961821 0.218306144636891 0.597163146567226 0.648127679019806 0.463407025016210 0.513777647206196 0.578740700472745 0.0781712273724899 1.60737192937313 0.540853048856619 0.700050397427744 0.341370051990477 0.651095091389629 1.06783423988966 0.0450946923725815 0.571210547690683 0.812322091517673 0.0779568696517350 0.242943040110982 1.26695136601043 0.258441147941552 0.0508846355524034 1.46666207824374 0.583243128352964 0.142330931773813 0.149919554968086 0.740875577627824 0.0628143644805183 0.714981402671364 0.231560485239475 0.426207746572033 0.940423133116018 0.412469193717236 0.744098196988058 0.850015222736391 0.512539876972093 0.587014700511845 0.0770626685864659 0.556940167625677 0.587311003930831 1.02608113091876 0.395557870176262 0.462330108237286 0.252667310427605 0.395443868246883 0.0349933397091386 0.577207713019963 0.552171187126134 0.863849578656598 0.161887107180983 0.399993300588216 0.660726059491117 0.481236307858253 0.189045829455397 0.154187495804817 0.212168654281398 0.584684478590675 0.398361450368009 0.0670246671406196 1.21995662993605 0.211795033955546 0.449134193368807 0.529741182602691 0.490987526396593 0.503856793685424 0.402367331377519 0.208967307127619 1.02638589644698 0.0796255248002363 0.338186447563700 1.01743826560284 0.235571864944259 0.673430121208393 0.0189864911595887 0.762708855887922 0.190256055003873 0.696557773078700 0.0898629683501830 0.381411933296112 0.810746018580651 0.832000269768404 0.274619993670790 0.201717140863793 1.02637459601723 0.254777773716381 0.199940621155205 0.480672321514114 0.701139816352800 0.124707870224900 0.188739886794011 0.451273398337428 0.744396204359841 0.274090013768253 1.11382818172279 0.0128794071483149 0.457531301258618 1.06705679977913 1.05580358357256 0.163454709610794 0.462740315241274 0.159539137979107 0.303381507617039 0.534076298606564 0.746735151497209 0.245959626739705 0.00309858157416344 0.957852182641779 0.429512414688547 0.0122666519512706 1.12368073345957 0.592671126549512 0.0840725085773307 0.692751476774075 0.433695189332966 0.169411065488168 0.106523749951419 0.0666780970056279 1.37261509965005 0.377103949631231 0.382127791599159 0.0272896739775260 0.652588079150988 1.01711948437442 0.384990771971322 0.437522333450565 0.385512973649931 0.319597019682698 0.295383501134649 0.0301856856544015 0.122515633521109 0.0545185278226651 0.336755126367250 0.334243743380358 0.0285031038271548 0.748846372006003 0.419303942799112 0.127278081873864 0.748759362967002 0.488285998268017 0.191222902526040 0.512066870766278 0.749369958202460 0.0710400695286243 0.197718728336605 0.0169506023551799 0.600761605797085 0.0666794993873467 0.639151261959778 0.157932883272341 0.453365137717097 0.152845014018832 0.703671216282261 0.200065177588327 0.193890993728641 0.497029422845435 0.326862920846260 0.714421358195845 0.672040255039543 0.273323863535318 0.0950068891004609 0.671223088780673 0.0225335733299661 0.520359065484265 0.470049450345694 0.310006285870512 0.0658055211857238 0.556271344282823 0.292346681628147 0.280120810309866 0.194231911295681 0.700810265441651 0.426639159754313 0.250302950230753 1.05888082788525 0.413820914651372 0.198319585208742 0.596713802047580 0.00290376837177685 0.828114947536355 0.914066824415412 0.0988694659318777 0.995234554096023 0.320436844062734 0.398664603841016 0.312976627611658 0.277258171045551 0.110228897554708 0.291147424530543 0.666671275588676 1.44597677142020 0.480234208473140 0.779776185540854 0.366605053583367 0.122481299911666 0.293871625110155 0.665407085446193 0.531573553264896 0.231141013998755 1.05773342028262 0.0742769389752263 0.0540782258917824 0.708541139352997 0.413173274207828 0.306716987709283 0.537489890054700 0.397410232425569 0.175241156164388 0.0274209335609136 0.0977481956063849 0.280189554609173 0.372440226428214 0.656795498347428 0.260539665287289 0.522999004237683 0.0259553030061410 0.880084010084954 0.166604700521631 0.546392727744780 0.274406423387110 0.759439641206860 0.00364261578788906 0.0559079240136569 0.0850750570348250 0.684633534613799 1.14295689990495 0.802454307302181 0.0697237926396738 0.206082318373302 0.0414118970809587 0.804802758229552 0.437813369310507 0.0242872655280974 0.128757819775620 0.799511663563813 0.379401496278982 0.966547521922879 0.739182653869219 0.307693157067415 0.143876200168695 0.701349680523109 0.234570710383575 0.0422741020944276 0.252473240140670 0.234684313148907 0.604664719297197 0.342423747390496 0.282216831592194 0.536322650572241 0.961717200712381 0.535578687602094 0.772016928621947 0.0384689994838200 0.176864376543112 0.0409589135242912 0.297446745846207 0.987364117930241 0.678712858720209 0.596966702198466 0.406732448274108 0.212447568411773 0.739200794075314 0.328148108038714 0.484327906960526 0.134817296024136 0.702752483174316 0.540713597436222 0.185076330187036 0.205946894021173 0.372727098782832 0.440989585655717 0.111400294932884 0.723710701243191 1.06189258049081 0.283341775033244 0.428708717494567 0.00393209250982293 0.540113792066665 0.0977178095745975 0.129256938888969 0.437384201859570 0.830315850873314 0.488538092067869 0.0763615542298909 0.298339030811640 0.0130574937304701 0.252088097699006 0.370279996146508 0.441542508526259 0.476319305554506 0.00611532841441392 0.893225567727060 0.0719993599956919 0.850948152502288 0.150924941099371 0.517503366573241 0.0820052674641440 0.547241532096699 0.944709289693092 0.420993403670264 0.421195610103244 0.259071747221614 0.108994898589179 0.522432682774278 0.144116459847559 0.558552056982063 0.0809992431208891 0.280642086230975 0.171755477252290 0.305857953637633 0.999072687440310 0.0983244074244330 1.11721024807722 0.0322543961229343 0.0982886906253960 0.886413547036019 0.677579948251155 0.479710369394396 0.172817950819968 0.139468497005099 0.338900116989201 0.116806319606619 0.357652706883941 0.361032729381717 0.0692024381452567 0.0611233127938826 0.335414157822995 0.506837206920145 0.139588087443344 0.547302016527831 0.239631476266102 0.736994051080262 0.348645912147953 0.280854982689987 0.795321440605615 0.0409489888775480 0.185890015469472 0.0620158797890064 0.520025736329555 0.450368138265481 0.692095906256005 0.0945393442321808 1.01382837343651 0.131425777550821 0.915529612419394 0.504988838025265 0.280879653426707 0.975270243059477 0.764198266732297 0.733164672135749 1.12278052060731 0.553660373341805 0.132267616765629 0.0357977602135899 0.627332948800393 0.365560405289909 0.422916832208069 0.807626530445695 0.723085984736843 0.134739320621038 0.758790435655336 0.770586146159472 0.563200896677246 1.40205586223942 0.213811481696614 0.0837811118562829 0.330908183974955 0.0838873204143329 0.778984305282279 0.193938151916337 0.161680693596187 0.0588751815355370 0.932915488987427 0.837287460671420 0.601240456876043 0.643480784207141 1.24135796766610 0.321060053503845 0.555716494391054 0.162684846744315 0.411544931811129 0.448223398829354 0.230246693951212 0.238529693352320 1.00812489901585 1.17440956126270 1.13614694995255 0.601905798956795 0.701714400445601 0.165738500679028 0.348285470061148 0.583896252295598 0.257211630915193 0.0935213133712710 0.806864672061998 0.0645195280860394 0.863960360706313 0.0964986689738225 0.538244447882607 0.705803650516382 0.395070623621004 0.126688779183055 0.240402209262826 0.116789742076724 0.324640742895600 0.993033043346955 0.221605838353271 0.641631940392521 0.235521004371915 0.651968889553491 0.537440762037019 0.0777480951768545 0.416022937131239 0.0853343582872795 1.30461441173749 0.599657593210389 0.897996251171535 0.106912079266709 0.344023391292555 0.153223016025998 0.322976804151978 0.408810342836131 0.172069617440277 0.712738527434828 0.384277209932813 0.351793637640138 0.106045159652763 1.07777976854602 0.335421766751165 0.512500655109435 0.943885847018302 0.440715426768577 0.840108005639270 0.293286445148773 0.611488066063241 0.749441976647058 0.475562802433925 0.0205658444310657 0.394637111953448 0.00726224555233004 0.385507635317072 0.417450636928840 0.417577757495169 1.14399286788504 1.12800162581936 0.575335435389689 0.260513536938557 0.309935654692831 0.581693577864209 0.824841775256813 0.416453288705424 0.143242404273188 0.579548346022880 0.0179414044228373 0.0517667335334823 0.173185886608826 0.226987892362254 0.171748775000977 0.420844632919034 0.173079814515377 0.716491619587125 0.800681153478521 0.275864006979164 0.155542617718594 0.601775726001470 1.14000648285139 0.729592524783617 0.000519445683813272 0.119023531662732 0.905062494531255 0.631266877048639 0.138302971640166 0.445290249689244 0.785628248969512 0.703166537217176 0.293093932928423 0.0339968695629617 0.185677428322384 0.223238903346436 0.571495676714163 0.186248251808430 0.183194443922749 0.666456347994573 0.752536070103374 0.114665656742795 0.390588684809792 0.300141872950302 7.68342042847063e-05 0.352284304431422 0.932814716584590 0.567531044493795 0.349353764997257 0.167314378438366 0.136712324810136 0.124127374463043 0.460262728345753 0.191450685090960 0.787872129712090 0.436831149928449 0.609551988640641 0.271478142319353 0.421364735269601 0.347572363756957 1.00035410199309 0.323445194130904 0.430040658850967 0.500167017468834 0.769002352144245 0.489020935677619 0.715438301789496 0.533529889395299 0.636394690814334 0.132443201305485 0.622759646668570 0.638472125290545 0.315384145773603 0.188574642111289 0.332843533532794 0.352281303467956 0.389668924831863 0.467802439372691 0.366690926413454 0.281225434882356 0.271351181048962 0.483760657885001 1.14810660319073 0.283029325289280 0.835623291538825 0.654513369594971 0.881001463286815 0.387574400284812 0.467497455250400 0.290850487230579 0.199525352605156 0.499951874435951 0.405022956043972 0.115848409021811 0.427447840622665 0.837022010709420 0.576489190327161 0.0597006912504677 0.204295460112310 0.556787928778747 0.662524962648371 0.724103352813728 0.788744960039604 0.800082473741570 0.202740197122914 0.00494315339126205 0.355003941051897 0.102310968633077 0.177511203875511 0.697198789234656 0.453529072958285 0.543551468813039 0.506442592795336 0.0755105878956422 0.110706459572743 0.553443076982300 0.873856035535265 0.594307492642616 0.340393626067075 0.484470160145844 0.801632822327760 0.195637267787486 0.256516884153856 0.526305499591992 0.157215819278643 0.783932173483863 0.777064236238487 0.217567359682307 1.30740021028898 0.459392606515635 0.757456631518748 1.00653374724799 0.502248212813244 0.0189992217550060 0.181452161395968 1.23181087862229 0.101088623662383 0.504450528303944 0.393874368890445 0.343491599426068 0.535460184120044 0.0706486244623711 0.665716024883516 0.214194078372303 0.185657223263302 1.17869833949318 0.377060669290154 0.669205512357969 0.817313630469473 0.406528112095572 0.188972617815777 1.04922354104746 0.349777835232927 0.101429117130535 0.896773478360879 0.675338239234633 0.329197473976499 0.492078289157244 0.409914864670206 1.17587673421423 0.628987443346313 0.0392423791235246 0.348028546570569 0.260847310314397 0.610049701586408 1.06872202383768 0.569931272782572 1.01732078007097 0.306905919428769 0.859992431249478 0.222114284798553 0.609328200243256 0.625253399103606 0.213639931046857 0.844915488890968 0.511295176205087 0.0640345047901835 0.0613343512720478 0.447159071052212 0.151194061515577 0.0184465063399271 0.203427655800805 0.393172408950050 0.511323293719549 0.254716176415317 0.844274868801354 0.938582267269359 0.295183928989931 0.281262217058449 0.551100117210166 0.263424226587701 0.940300805558152 0.970201775579679 0.517776202732352 1.03188580871261 0.281286761431654 0.0397315853455568 0.555661723009138 0.172728093664047 0.365677588124284 0.555004495876496 0.487770132089937 0.0155604977438648 0.370024566829312 0.640066420228507 0.419411531427283 0.105483581177490 0.155547067879364 0.211487410923740 0.476262204206840 0.117775397552013 0.152608935504491 0.219275568967012 0.203665922627190 0.268247478709331 0.183881936808514 0.937259108984363 1.27759683376228 0.430769125339784 0.714177050192099 1.14541063145482 0.144286397774477 0.920920892278163 0.100392967735801 0.0347113679327751 0.662134292009396 0.603586243045647 0.0398422799839839 0.350470573155653 1.16263394357588 0.642520185367615 0.782407020263685 0.238907255500979 0.191635689014209 0.581684285360948 0.420554962570145 0.381513994909961 0.759198814019225 0.857410500677521 0.458021590889966 0.684497961348399 0.00952272343585866 0.0112864208088809 0.777918431998835 0.266837265990215 0.136809509752726 0.723570747686315 0.197414564614977 0.518456617990848 0.910309843506849 0.228457779338532 0.0967198972825316 1.35993887644584 0.126284704450879 0.350691245069367 0.625131324068358 0.660906435491053 0.165541646465309 0.423590834406418 0.207076936313777 0.810532468501815 0.592146417214391 0.767936738249424 1.12794992228211 0.426852998476735 0.414445459871648 0.193125801137859 0.305135092866514 0.396386346934850 0.555767736031096 1.12100318443866 0.154985957060575 0.552673269818328 0.391496951792204 0.150692794701420 0.190526255321892 0.745866969706367 0.251685780185332 0.0132007103934414 0.339880727385877 0.241797366168295 0.521895371556081 0.124072114592056 0.403454230079664 0.305696965769059 0.491691497274380 0.0626894414281940 0.461817840102061 0.765984039273437 0.0547857515613354 0.699085671610212 0.00743386135776571 0.660224378094311 0.180887316100355 0.466890197914323 0.240239132694474 0.0926988972774941 0.482195139041220 0.368377590690478 0.0261442226925401 0.931103311050392 0.252321219968026 1.11967441000822 0.210921338133832 0.495814816359752 0.266379834203500 1.36459757235300 0.108476938609416 0.397842912394355 0.0611368634471067 0.527168058507716 0.0175748614765940 0.320608083941664 0.518528614860580 0.339007552149136 0.112763369451201 1.48658223784770 0.297407085476542 0.389006192049552 0.406956873439433 0.000744862995694561 0.645388261746763 0.652830001300519 1.38034650468226 0.0481442935617339 0.560320260433167 1.35778003963255 0.433431722626671 0.703297846566861 0.0979853158963626 1.10200043431245 0.0112597434597704 0.317325145586507 0.467820441583435 0.398692969745913 0.412369934484176 0.632864193938436 0.673896335840572 0.581719897909376 0.988067905890218 0.0300377384375338 0.183820664575524 0.616159718692400 0.550154563952774 0.102295686469578 0.750837105109945 0.221397033722740 0.424887253310528 0.0178506457651923 0.334798194530614 0.566325102661519 0.340575450067762 0.612059160466924 0.255156746824162 0.0307699398450084 0.588118536249091 0.598859863282164 0.318327000929031 0.266360978654591 0.873084075685587 1.10678511072450 0.736238211531821 0.632886263306771 0.920254697731100 0.754532784571828 0.407521933526977 0.297878959324676 0.602786797845017 0.105804847878340 0.0586668673857748 0.765738489636474 0.0140325002564926 0.612893023871818 0.469815083356050 0.507732628338468 0.300980163999435 0.392821523160947 0.843502877411587 0.577906298609393 0.244540425841902 0.175375036215940 0.510363388088267 0.383144244014532 0.441600259989708 0.0338687897582381 0.304295073455895 1.16445377175627 0.331561469015677 0.375735277912135 0.278172423677842 1.34177623309093 0.294216045263441 0.594566899762979 0.301953515291503 0.675756647232338 0.699656891746887 0.490355279541089 0.359080381781991 0.649063785604289 0.637786394036154 0.301798375153719 0.541806172042265 0.300544898815174 0.381008895174011 0.704247625067909 0.450270841979197 0.109117671899741 0.724057773652117 0.538691684490167 0.964651017187457 0.245250738888021 0.0341191202470436 0.0382929129517787 0.520509075053925 0.398111385013912 0.280495326774265 0.743594431678137 0.0248386408156163 0.679783927567443 0.0520441595811877 1.13914852806798 0.0404366908322257 0.138600722692893 0.720744594634344 0.0116740439555194 0.335932273534373 1.06104517863362 0.455698522770427 0.118216381484810 0.0435735024152591 0.188598029878636 0.241865561275048 0.832235586710501 0.399773232455643 0.314824551272047 1.35142376460054 0.309683907904163 0.238794003966293 0.839170623172328 0.877255385973888 0.567334356263336 0.0966103759298733 0.435243916896200 0.0783822993729205 0.0871700329922228 0.715728693183268 0.213127416661954 0.236299163419440 0.109438444816266 0.250739775832457 0.190193750214805 1.24642767566792 0.659932906822036 0.512161971491290 0.0852284835636833 0.125438609559833 0.235932745209790 0.328432917030742 0.141900425097953 0.480059380333722 0.0222744555554349 0.0531139519800774 0.349186169071070 0.0172283264051434 0.601648153717736 0.349778342057974 0.258268796533306 0.0843784080627545 0.244390460829143 0.470095366527088 0.448900176990336 1.35368348867836 0.389379581341342 1.21705703532385 0.930926088053435 0.0387789814442120 0.567415526494721 0.327887361713207 0.384540944339786 0.315426848482309 0.925140001961170 0.0762045519084568 0.0297716465004625 0.0894265181797372 0.702462087384911 0.157232486441876 0.177455913833080 0.564118380636629 0.413921207518852 0.699927632251093 0.257021743568639 0.527061056581135 1.75544806990203 0.140391842962468 0.456548028766637 0.112775511793296 0.717275822313490 0.00882552305860373 0.878354525651630 0.452756286274323 0.111687928440881 0.529401455042265 0.789096882049515 0.110678363064475 0.599562232411511 0.929502733809614 0.624517180410804 0.739247992002510 0.128268644625776 0.439224953139805 0.427058720311858 0.228405342763887 0.0679841133956164 0.119921283144554 0.583140423289373 0.756873219399733 0.270408308289272 0.0227647870235880 0.112664186756552 0.798768861518068 0.129075301549639 0.388187423519050 0.226356133672607 0.509313327448474 0.216011618459696 0.721786817911147 0.963796714078185 0.636669349357571 0.863268267890013 0.556576844415883 0.658191072918369 0.105951804355799 0.174688069888436 0.371961606570434 0.185794662033892 0.403174695756396 0.625427825264025 0.539852773086291 0.344205509324145 0.242889912926971 0.215866195412112 0.0209124802477935 0.548684095174768 0.303050799487661 0.368806251630738 0.558728602599933 0.0170311204675115 0.129220253424967 0.435576294191188 0.270575801186164 0.228565343880432 0.294513025888133 0.139290297453168 0.644232664053452 0.574496827458314 0.169978890645641 0.363303289257933 0.0148586619317608 0.0680200564593695 1.20670839164994 0.116946923762591 0.389727763339721 1.10659728264655 0.588412667832632 0.0929763610489801 0.326061709700434 0.122135814639312 0.135018527031943 0.574275655924950 0.0507501087123468 0.471956234652218 0.167213735175528 0.649516181591837 0.250385825221034 0.623846737133044 0.641494821398240 0.524701918006208 0.292781973384475 0.331619724043558 0.776805656714564 0.171139261778004 0.109895652469888 0.651655136738474 0.0185436779657493 0.537127957927908 0.153578562738338 0.651067495096336 0.395767520953119 0.641723713161610 0.0889219962126942 0.544610462876767 0.502001306140906 0.511425842202501 0.186889206899028 0.152256949014134 0.833576082947992 0.671659642209197 0.0737558686793305 0.233962401621300 0.754928246508861 0.654486886465810 0.240996963022239 0.747527854883613 1.08133710191376 0.725431291920843 0.0430554197943682 0.242441573093926 0.565245190350116 0.199068262517199 0.443409902168063 0.272070909189513 0.485691761846380 0.210826078342470 1.53088995308053 0.467960190834182 0.263765067192710 0.132188478490118 0.853179695304635 0.0614875658069982 0.594813696288048 0.650535846795645 0.357394484698686 0.206708402630680 0.172293835897135 0.0315395102366880 0.396717177416015 0.407172661368303 0.00244839867760312 0.235473555588871 0.240564325699694 0.299175366290217 0.401741530095561 0.0312500987131519 0.174653436009732 0.701903374245593 0.328539957073544 0.208417334316123 0.281636498471106 0.137471609812127 0.132296888050415 0.0110195538260560 0.424874319932089 0.828127643931420 0.00289423696497844 0.429851019693135 0.181556092252961 0.819777987202239 1.00371362453456 0.293387260652004 0.478840281994709 0.419115276133039 0.771963541850666 1.00772412122574 0.171482317469885 0.163005437045614 0.348202927210631 0.0273644659898425 0.771395092510381 0.205416118904425 0.451893017109737 0.153688643798956 0.191248449901984 0.0337854082811017 0.535112361125948 0.0603590114101395 1.53342925497833 0.276867764092624 0.628618704841858 0.590319649922498 1.11591817966472 0.417185481705198 0.753406047657900 0.0959254943431835 0.397557669257852 0.178103494258774 0.242969410419081 0.127593807784535 0.247367442553405 1.33712512249449 0.696789514048246 0.869350674918730 0.269328665744218 1.38553531706570 0.196337583978037 0.546202252584613 0.838681124090056 0.0676057884587019 0.286724604482956 0.266797733266747 0.450366946625688 0.126714968320126 0.321978942436051 0.619246723937379 0.0590085523712414 0.164761661152078 0.0597724186327593 0.198619957976212 0.411804858315821 0.578080684352069 0.331373041332649 0.0493977145146937 0.256957061628524 0.0299085040070760 0.192939263705401 0.575019121468599 0.350985895165282 0.272261387558693 0.100878583258114 1.09553348910790 0.0462711515185269 0.171235590766337 1.39083770819002 0.499165815819553 0.902036855909390 0.649952004736764 0.125716067106862 0.417265270204384 1.12826677525345 0.763858934105195 0.0247898934682485 0.0118319558612521 0.388623704720535 0.192548319668765 0.187327660360700 0.874256642923652 0.410197297521935 0.454565142635160 0.284335506234120 0.314211837778237 0.0190011788439997 0.0101793674979937 0.383182186994080 0.688422234447677 0.116720323920328 0.423255306097533 0.630752587586448 0.399218990855878 1.16565701994874 0.606481884031838 0.302889149892747 0.0550940631876580 0.0957786821764995 0.962707576469233 0.854138714932834 0.173954900102252 0.393127341318368 0.0784660917555993 0.293452792288845 0.0186977559931422 0.152481532408692 0.598268761426315 0.0368830073612603 0.614620005154563 0.319515920631887 0.434138447526715 0.345694742121806 0.309560395775994 0.627452698801577 0.0794502088738802 0.624239550798963 0.183028132445235 0.333925529855051 0.100433611880842 0.273461501848707 1.20488893778622 0.672229462850391 0.00750550436392579 1.01711639132003 0.269063043261957 0.288800457915104 0.385599996169223 0.529458042217861 0.474230718644630 0.951806381169262 0.408079137618253 0.167292345517478 0.152674256437263 0.354860834973475 0.276549208298638 1.75587722493869 0.786604222797838 0.443497426279534 0.615974317372039 0.384665438507707 0.116148588417185 0.350425150819669 1.56434404666897 0.444924591620104 0.210998150769569 0.527512645775112 0.187661687271213 0.0358795901821574 0.0452328456206371 0.828231255278133 0.913488161012112 1.15270153355788 0.0243858091784047 0.421202137964394 0.416771021423023 0.0418061463266789 1.22132870331122 0.774300868187550 0.424025741439493 0.811794923917253 0.434536819153812 0.339714810772911 0.198407163842195 1.56654142515675 0.813368987916743 0.189552889354636 0.557288187839932 0.609677834087321 0.259485109169402 0.0542410283300139 0.803772022767579 0.807031677937688 0.369858423578202 0.723431737177017 0.265144802269857 0.835058724412944 0.743565798356147 0.0960358187706536 0.301713835776713 0.338156902944030 0.947978715705360 0.370309742468261 0.781087349259151 0.627913106326388 0.308723234407656 0.0972443902600420 0.157261786372515 0.125674464087070 0.167433088626651 0.967490649169240 0.111768060367044 0.902167890544252 0.666131998400984 0.568370299937297 0.774565888472623 0.472843582125553 0.0149641735285419 0.147460069136049 0.618284777804574 0.615956221879824 0.0722798583792268 0.0765119508677251 0.305334447330191 0.106751238821195 0.994300563538736 0.295834444298181 1.29559107978536 0.633173900078299 0.838504735443027 0.730686080208891 0.935811771866920 0.713140857904513 0.0312761103051917 0.838816329657788 0.617827262229395 0.112499850561952 0.540461328810724 0.434552719846656 0.633411684921912 0.374887190432056 0.415245840389758 0.502947480874702 0.0439809056336183 0.815855382483790 0.0672874030981816 0.351974880609694 0.532183354243912 0.158126993255927 0.131780881338208 0.256881470314761 0.202207633411020 0.371877397087710 0.509238170750073 0.658193298277239 0.303196901022349 0.774039853362105 0.340638782572848 1.14063587958394 0.198071988632229 0.0992872383965877 0.114845924413651 0.0894251859388601 0.648108229316550 0.582558187588175 2.30021236056991 0.756768178931589 1.19134396124378 0.373470829250622 0.152055461605785 0.398113513127447 0.184053786849405 0.0508659115242506 0.250501289961177 1.01875095483112 0.0134199735800990 0.553039735575533 0.169133774659855 1.41154895210493 0.0808394057489932 0.0979541829839648 0.204699180100364 0.299683398181310 0.614349730232206 0.0919011744301440 0.127765662815900 0.502344773411658 0.615748157944524 0.248385687795207 0.957866543784740 1.02863260064898 1.06052032907518 0.180220634714089 0.0972004778052220 0.0332497944367587 1.81576110631262 0.253402679329743 0.357547756358612 0.107032780418943 0.912612344120996 0.736287747238304 0.655135827566851 0.254176178765952 1.14562580365438 0.386212368957798 0.189229888281481 1.19946145590532 0.0356516479463063 0.388965045205050 0.527655671913305 0.170896523548768 0.246220231902740 0.606050803471560 1.27247988346030 0.689609441478746 0.106885168279887 0.119716508266919 1.00491148756823 0.0986441487760132 0.283699475034099 0.343722190340498 0.664606794034063 0.370846150212569 0.408945523029269 0.487877248304027 0.207836017762260 0.348205885596340 0.00882271858328083 0.570867564311606 0.227834064191867 0.290601076101533 0.159104028975865 0.0679638133186456 1.10989441470770 0.433886972039130 0.276101939964533 0.529192859140768 0.463099476523982 0.536305968621093 0.0278731739520827 0.755276442579410 0.348966845891504 0.204970223400489 0.560742528523568 1.05283983848894 0.194842360231417 0.469425867084890 0.571419547645566 0.791339853884346 0.151700319230349 0.298527363785302 0.478425122658652 0.131710157563144 0.957601665735459 1.03206193410805 0.0682261380891937 1.39469857696831 0.336117258359213 0.470767527151243 0.717650379528475 0.697847335663768 0.237114117406579 0.231844715485789 0.427811029643614 0.171922682027615 0.355719803254272 0.250297118734721 0.481623080869809 0.118021247992023 0.134328199425332 0.465217372116782 1.70303188241669 1.02870701316446 0.632124775638403 0.465815479619714 1.04442893393679 0.371318021544964 0.678966946208850 1.31626884461558 0.0204465338864224 0.0560860074410359 0.446917858765179 0.214884450653589 0.0186835014387669 0.0133812380150570 0.0975141079309619 0.749904643817526 0.658121308703613 0.242968788921240 0.240707497038439 0.474216925092379 0.972623584757569 0.0136392311967425 0.823040331651131 0.391958409523625 0.901068318365560 0.144882215963170 0.367888417029726 0.717406135935732 0.0475330559804783 1.05744530716467 0.0134859914762728 0.0460053271304091 0.529305431295071 0.396332497168495 0.0491544171685815 0.168308384532470 0.415963125371226 0.00346697638043193 0.573887632059528 0.640686284655652 0.128010624818026 0.0389359132163438 0.639498684332455 1.00430691262706 0.680051124984204 0.0960244121797900 0.284094140889363 0.536825452457532 0.896240360183593 1.08373206456892 0.0756906767494054 1.27760676318178 0.923093782034442 0.715705426467529 0.101280110651971 0.0303227625340595 0.175061739701163 0.548858061230059 0.205268996031679 0.286874072518400 0.147086389220600 0.900026689605420 0.355090558136786 0.789595778869758 0.662583052077268 0.0563969960311147 0.0959770057827523 0.399776116437499 0.656764624268281 0.0730317038260517 0.304577960226000 0.313090942964237 0.342173200065729 0.128132526382423 0.00425800713038766 0.650420180807480 0.515614770140608 0.243897890853214 0.600738264857188 0.407700669150029 0.744715015704675 0.495159870260693 0.189015223996884 0.0178326897349809 0.115760425692482 0.735044635704044 0.151044230806503 0.575879788250797 0.0189890291655350 1.17573888697039 0.177733194147206 0.0747554836336092 0.373973150414845 0.0262902353250498 0.845898677175536 0.378639568930550 0.450102665680424 0.128329101990333 0.258756393245599 0.318530026590173 0.588579621215837 0.567144332040557 0.244970690654433 0.863051135079600 0.0524924155382294 0.555789661580270 0.530301144389316 0.537608739632349 0.723429592979885 0.728733976686851 0.147783012197050 0.569373107169665 0.288759072167759 0.803393508144844 0.195267886635413 0.531135722703953 0.448675251263777 0.339571069333870 0.876934127630171 0.784862678382218 0.0779930795895606 0.394841734008560 0.292692658217931 0.429694240403588 0.167875785329747 0.591994246408922 0.166327888299115 0.820293854200304 0.198049689899571 0.0794395140364047 0.0358723394538059 0.0746697989832236 0.613885426425380 0.391080227181601 0.359211771047454 0.568879882915596 1.44126675255667 0.582872524368832 1.29123821808980 0.164020197573560 0.493979517657381 1.01703551496048 0.285781002842721 0.155182189453207 0.227613667227937 0.0327937636878747 1.01745886342440 0.369796931746018 0.619039085155610 0.674961317153983 0.437212379600167 0.287491222007828 0.178803370352410 0.440675052943853 0.523221251331533 0.185240818822178 1.33449068724701 0.0769631771719567 0.498257288586330 0.0758842345206425 0.145860239151192 0.817279428659985 0.209209491438365 0.166376582287032 0.830601199060213 0.156745518119535 1.30242512022462 0.216242232333171 0.571838765455578];
  2 Comments
Star Strider
Star Strider on 29 May 2020
I was actually hoping for a file that contained the signal as well as the associated times.
Is the time vector available?
Alternatively, if you are absolutely certain that the time intervals are constant (within the constraints of floating-point precision), what is the sampling frequency?

Sign in to comment.


Madjer Martins
Madjer Martins on 1 Jun 2020
Thanks a lot guys! I guess it will work! I'm busy at this moment with finals, but as soon as I'm free, I'll back to this problem! Thanks again! And sorry not upload a file with data before, I'm learning yet about this supporting tool, and everything else!
Best regards, Madjer.

Categories

Find more on MATLAB in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!