From 7b7852abc078b58e35b5137100a28d2867704e24 Mon Sep 17 00:00:00 2001 From: Karan Anand Date: Mon, 24 Feb 2025 18:12:17 -0800 Subject: [PATCH 01/11] feat: add JS implementation --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../math/base/special/sind/lib/index.js | 49 +++++++++++++ .../math/base/special/sind/lib/main.js | 71 +++++++++++++++++++ 2 files changed, 120 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/lib/index.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/lib/main.js diff --git a/lib/node_modules/@stdlib/math/base/special/sind/lib/index.js b/lib/node_modules/@stdlib/math/base/special/sind/lib/index.js new file mode 100644 index 000000000000..c42c9f825dcb --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/lib/index.js @@ -0,0 +1,49 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +/** +* Compute the sine of an angle measured in degrees. +* +* @module @stdlib/math/base/special/sind +* +* @example +* var sind = require( '@stdlib/math/base/special/sind' ); +* +* var v = sind( 0.0 ); +* // returns 0.0 +* +* v = sind( 90.0 ); +* // returns 1.0 +* +* v = sind( 30.0 ); +* // returns ~0.5 +* +* v = sind( NaN ); +* // returns NaN +*/ + +// MODULES // + +var main = require( './main.js' ); + + +// EXPORTS // + +module.exports = main; diff --git a/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js b/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js new file mode 100644 index 000000000000..c14d6e3c95ae --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js @@ -0,0 +1,71 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var sin = require( '@stdlib/math/base/special/sin' ); +var deg2rad = require( '@stdlib/math/base/special/deg2rad' ); +var isInteger = require( '@stdlib/math/base/assert/is-integer' ); +var isInfinite = require( '@stdlib/assert/is-infinite' ); + + +// MAIN // + +/** +* Computes the sine of an angle measured in degrees. +* +* @param {number} x - input value (in degrees) +* @returns {number} sine +* +* @example +* var v = sind( 0.0 ); +* // returns 0.0 +* +* @example +* var v = sind( 90.0 ); +* // returns 1.0 +* +* @example +* var v = sind( 30.0 ); +* // returns ~0.5 +* +* @example +* var v = sind( NaN ); +* // returns NaN +*/ +function sind( x ) { + var xRad; + + if ( isInfinite( x ) ) { + return NaN; + } + + if ( isInteger( x / 180.0 ) ) { + return 0.0; + } + + xRad = deg2rad( x ); + return sin( xRad ); +} + + +// EXPORTS // + +module.exports = sind; From 060532250a9dc051c7f2ddc92f0b2868f63fa59b Mon Sep 17 00:00:00 2001 From: Karan Anand Date: Mon, 24 Feb 2025 18:13:28 -0800 Subject: [PATCH 02/11] test: add test files and their fixtures --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../special/sind/test/fixtures/julia/REQUIRE | 2 + .../sind/test/fixtures/julia/negative.json | 1 + .../sind/test/fixtures/julia/positive.json | 1 + .../sind/test/fixtures/julia/runner.jl | 70 ++++++++++ .../math/base/special/sind/test/test.js | 123 ++++++++++++++++ .../base/special/sind/test/test.native.js | 132 ++++++++++++++++++ 6 files changed, 329 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/REQUIRE create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/negative.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/positive.json create mode 100755 lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/runner.jl create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/test/test.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/test/test.native.js diff --git a/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/REQUIRE new file mode 100644 index 000000000000..308c3be89c85 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/REQUIRE @@ -0,0 +1,2 @@ +julia 1.5 +JSON 0.21 diff --git a/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/negative.json b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/negative.json new file mode 100644 index 000000000000..67c1867bc8b4 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/negative.json @@ -0,0 +1 @@ +{"expected":[-0.17364817766693036,-0.17347612158637143,-0.17330406021084302,-0.1731319935455969,-0.17295992159588505,-0.17278784436695957,-0.17261576186407268,-0.1724436740924769,-0.17227158105742477,-0.17209948276416903,-0.17192737921796264,-0.17175527042405864,-0.17158315638771027,-0.17141103711417094,-0.17123891260869417,-0.17106678287653374,-0.17089464792294345,-0.17072250775317738,-0.17055036237248972,-0.1703782117861348,-0.17020605599936714,-0.17003389501744143,-0.16986172884561246,-0.16968955748913525,-0.1695173809532649,-0.16934519924325678,-0.1691730123643663,-0.16900082032184907,-0.16882862312096092,-0.16865642076695772,-0.1684842132650956,-0.16831200062063081,-0.16813978283881972,-0.16796755992491894,-0.16779533188418516,-0.16762309872187525,-0.16745086044324625,-0.16727861705355535,-0.16710636855805985,-0.16693411496201732,-0.1667618562706854,-0.16658959248932187,-0.16641732362318468,-0.166245049677532,-0.16607277065762208,-0.16590048656871337,-0.16572819741606443,-0.165555903204934,-0.165383603940581,-0.16521129962826445,-0.16503899027324356,-0.16486667588077772,-0.1646943564561264,-0.16452203200454926,-0.16434970253130615,-0.16417736804165703,-0.164005028540862,-0.16383268403418136,-0.16366033452687553,-0.16348798002420512,-0.1633156205314308,-0.16314325605381352,-0.16297088659661432,-0.16279851216509433,-0.16262613276451496,-0.16245374840013765,-0.1622813590772241,-0.16210896480103607,-0.1619365655768355,-0.1617641614098845,-0.16159175230544537,-0.16141933826878044,-0.16124691930515228,-0.16107449541982363,-0.16090206661805728,-0.1607296329051163,-0.1605571942862638,-0.1603847507667631,-0.1602123023518776,-0.160039849046871,-0.15986739085700696,-0.15969492778754943,-0.15952245984376243,-0.1593499870309102,-0.159177509354257,-0.15900502681906742,-0.15883253943060605,-0.1586600471941377,-0.1584875501149273,-0.15831504819823994,-0.15814254144934084,-0.1579700298734954,-0.15779751347596913,-0.15762499226202772,-0.157452466236937,-0.15727993540596294,-0.15710739977437163,-0.15693485934742937,-0.15676231413040254,-0.15658976412855768,-0.15641720934716155,-0.15624464979148098,-0.15607208546678292,-0.15589951637833455,-0.15572694253140312,-0.1555543639312561,-0.15538178058316104,-0.15520919249238566,-0.15503659966419783,-0.15486400210386558,-0.15469139981665703,-0.1545187928078405,-0.1543461810826844,-0.15417356464645735,-0.15400094350442808,-0.15382831766186544,-0.15365568712403843,-0.15348305189621628,-0.15331041198366824,-0.15313776739166374,-0.15296511812547242,-0.15279246419036396,-0.1526198055916083,-0.1524471423344754,-0.15227447442423542,-0.15210180186615868,-0.15192912466551564,-0.15175644282757683,-0.15158375635761304,-0.1514110652608951,-0.151238369542694,-0.15106566920828093,-0.15089296426292717,-0.15072025471190414,-0.15054754056048342,-0.15037482181393672,-0.15020209847753588,-0.1500293705565529,-0.14985663805625996,-0.14968390098192924,-0.14951115933883322,-0.1493384131322444,-0.14916566236743556,-0.14899290704967943,-0.14882014718424902,-0.14864738277641745,-0.14847461383145794,-0.1483018403546439,-0.14812906235124884,-0.1479562798265464,-0.14778349278581043,-0.1476107012343148,-0.14743790517733366,-0.14726510462014117,-0.14709229956801168,-0.1469194900262197,-0.14674667600003985,-0.14657385749474688,-0.14640103451561567,-0.1462282070679213,-0.14605537515693892,-0.1458825387879438,-0.14570969796621144,-0.14553685269701738,-0.14536400298563737,-0.1451911488373472,-0.1450182902574229,-0.1448454272511406,-0.14467255982377653,-0.14449968798060708,-0.14432681172690878,-0.14415393106795832,-0.14398104600903244,-0.1438081565554081,-0.14363526271236235,-0.1434623644851724,-0.1432894618791156,-0.14311655489946937,-0.14294364355151132,-0.1427707278405192,-0.14259780777177086,-0.1424248833505443,-0.14225195458211765,-0.14207902147176918,-0.14190608402477728,-0.14173314224642045,-0.1415601961419774,-0.1413872457167269,-0.14121429097594784,-0.14104133192491933,-0.14086836856892054,-0.14069540091323077,-0.1405224289631295,-0.14034945272389626,-0.1401764722008108,-0.140003487399153,-0.13983049832420275,-0.13965750498124022,-0.1394845073755456,-0.13931150551239926,-0.1391384993970817,-0.13896548903487357,-0.1387924744310556,-0.13861945559090866,-0.1384464325197138,-0.13827340522275214,-0.13810037370530492,-0.13792733797265358,-0.13775429803007963,-0.13758125388286474,-0.13740820553629068,-0.13723515299563938,-0.13706209626619284,-0.13688903535323327,-0.13671597026204296,-0.13654290099790434,-0.13636982756609992,-0.13619674997191242,-0.13602366822062462,-0.13585058231751948,-0.13567749226788,-0.13550439807698947,-0.13533129975013108,-0.13515819729258838,-0.13498509070964484,-0.13481198000658423,-0.1346388651886903,-0.13446574626124702,-0.13429262322953847,-0.13411949609884882,-0.1339463648744624,-0.13377322956166365,-0.13360009016573715,-0.13342694669196756,-0.1332537991456397,-0.13308064753203855,-0.13290749185644912,-0.13273433212415667,-0.13256116834044643,-0.1323880005106039,-0.1322148286399146,-0.13204165273366422,-0.1318684727971386,-0.13169528883562362,-0.13152210085440535,-0.13134890885876999,-0.1311757128540038,-0.13100251284539324,-0.1308293088382248,-0.1306561008377852,-0.13048288884936118,-0.13030967287823966,-0.13013645292970769,-0.12996322900905238,-0.12979000112156105,-0.12961676927252108,-0.12944353346721993,-0.1292702937109453,-0.12909705000898494,-0.12892380236662668,-0.12875055078915856,-0.12857729528186868,-0.12840403585004526,-0.12823077249897666,-0.12805750523395137,-0.127884234060258,-0.12771095898318524,-0.12753768000802193,-0.12736439714005698,-0.12719111038457953,-0.12701781974687876,-0.12684452523224393,-0.1266712268459645,-0.12649792459332998,-0.12632461847963009,-0.12615130851015458,-0.12597799469019336,-0.1258046770250364,-0.1256313555199739,-0.12545803018029605,-0.12528470101129324,-0.12511136801825598,-0.12493803120647486,-0.12476469058124057,-0.12459134614784396,-0.12441799791157598,-0.12424464587772771,-0.1240712900515903,-0.12389793043845508,-0.12372456704361344,-0.12355119987235692,-0.12337782892997717,-0.12320445422176594,-0.12303107575301511,-0.12285769352901665,-0.1226843075550627,-0.12251091783644544,-0.12233752437845721,-0.12216412718639048,-0.1219907262655378,-0.12181732162119181,-0.12164391325864535,-0.1214705011831913,-0.12129708540012267,-0.12112366591473259,-0.12095024273231429,-0.12077681585816115,-0.12060338529756662,-0.12042995105582427,-0.1202565131382278,-0.12008307155007103,-0.11990962629664785,-0.11973617738325229,-0.11956272481517852,-0.11938926859772074,-0.11921580873617336,-0.11904234523583082,-0.11886887810198772,-0.11869540733993876,-0.11852193295497873,-0.11834845495240255,-0.11817497333750525,-0.11800148811558198,-0.11782799929192797,-0.11765450687183858,-0.11748101086060928,-0.11730751126353564,-0.11713400808591336,-0.11696050133303823,-0.11678699101020615,-0.11661347712271312,-0.1164399596758553,-0.11626643867492889,-0.11609291412523023,-0.11591938603205579,-0.1157458544007021,-0.11557231923646584,-0.11539878054464377,-0.11522523833053278,-0.11505169259942985,-0.11487814335663209,-0.11470459060743667,-0.11453103435714092,-0.11435747461104226,-0.1141839113744382,-0.11401034465262637,-0.11383677445090451,-0.11366320077457046,-0.11348962362892215,-0.11331604301925766,-0.11314245895087514,-0.11296887142907285,-0.11279528045914916,-0.11262168604640253,-0.11244808819613158,-0.11227448691363497,-0.11210088220421147,-0.11192727407316001,-0.11175366252577958,-0.11158004756736926,-0.11140642920322828,-0.11123280743865595,-0.11105918227895167,-0.11088555372941498,-0.11071192179534549,-0.11053828648204292,-0.1103646477948071,-0.11019100573893799,-0.11001736031973558,-0.10984371154250003,-0.10967005941253158,-0.10949640393513056,-0.10932274511559742,-0.10914908295923272,-0.10897541747133709,-0.10880174865721128,-0.10862807652215614,-0.10845440107147264,-0.10828072231046183,-0.10810704024442484,-0.10793335487866296,-0.10775966621847752,-0.10758597426916999,-0.10741227903604192,-0.10723858052439496,-0.10706487873953088,-0.10689117368675155,-0.1067174653713589,-0.106543753798655,-0.10637003897394201,-0.10619632090252216,-0.10602259958969784,-0.10584887504077149,-0.10567514726104565,-0.10550141625582299,-0.10532768203040625,-0.10515394459009827,-0.10498020394020201,-0.1048064600860205,-0.1046327130328569,-0.10445896278601442,-0.10428520935079642,-0.10411145273250634,-0.10393769293644768,-0.10376392996792409,-0.1035901638322393,-0.10341639453469713,-0.10324262208060148,-0.10306884647525637,-0.10289506772396592,-0.10272128583203434,-0.1025475008047659,-0.10237371264746506,-0.10219992136543625,-0.1020261269639841,-0.10185232944841327,-0.10167852882402856,-0.10150472509613483,-0.10133091827003704,-0.10115710835104028,-0.10098329534444969,-0.10080947925557052,-0.10063566008970813,-0.10046183785216795,-0.10028801254825552,-0.10011418418327646,-0.09994035276253649,-0.09976651829134144,-0.0995926807749972,-0.09941884021880977,-0.09924499662808525,-0.09907115000812984,-0.09889730036424979,-0.09872344770175148,-0.0985495920259414,-0.09837573334212606,-0.09820187165561213,-0.09802800697170634,-0.09785413929571554,-0.09768026863294663,-0.09750639498870663,-0.09733251836830263,-0.09715863877704184,-0.09698475622023153,-0.09681087070317909,-0.09663698223119198,-0.09646309080957775,-0.09628919644364406,-0.09611529913869864,-0.0959413989000493,-0.09576749573300396,-0.09559358964287064,-0.09541968063495741,-0.09524576871457248,-0.0950718538870241,-0.09489793615762064,-0.09472401553167054,-0.09455009201448235,-0.09437616561136468,-0.09420223632762625,-0.09402830416857587,-0.09385436913952241,-0.09368043124577487,-0.09350649049264229,-0.09333254688543384,-0.09315860042945874,-0.09298465113002634,-0.09281069899244603,-0.09263674402202732,-0.0924627862240798,-0.09228882560391313,-0.09211486216683706,-0.09194089591816147,-0.09176692686319625,-0.09159295500725143,-0.09141898035563711,-0.09124500291366348,-0.09107102268664082,-0.09089703967987946,-0.09072305389868986,-0.09054906534838254,-0.09037507403426812,-0.09020107996165727,-0.0900270831358608,-0.08985308356218956,-0.08967908124595449,-0.08950507619246661,-0.08933106840703706,-0.08915705789497703,-0.08898304466159779,-0.08880902871221072,-0.08863501005212725,-0.08846098868665891,-0.08828696462111732,-0.08811293786081419,-0.08793890841106125,-0.0877648762771704,-0.08759084146445358,-0.08741680397822278,-0.08724276382379013,-0.08706872100646781,-0.0868946755315681,-0.08672062740440332,-0.08654657663028592,-0.08637252321452839,-0.08619846716244334,-0.08602440847934342,-0.08585034717054141,-0.08567628324135011,-0.08550221669708247,-0.08532814754305143,-0.0851540757845701,-0.0849800014269516,-0.08480592447550919,-0.08463184493555616,-0.08445776281240591,-0.08428367811137188,-0.08410959083776764,-0.08393550099690682,-0.0837614085941031,-0.08358731363467027,-0.08341321612392218,-0.08323911606717278,-0.08306501346973608,-0.08289090833692615,-0.08271680067405719,-0.08254269048644343,-0.0823685777793992,-0.08219446255823888,-0.08202034482827697,-0.08184622459482802,-0.08167210186320664,-0.08149797663872757,-0.08132384892670556,-0.08114971873245548,-0.08097558606129227,-0.08080145091853091,-0.08062731330948654,-0.08045317323947426,-0.08027903071380935,-0.0801048857378071,-0.07993073831678288,-0.07975658845605219,-0.07958243616093051,-0.07940828143673351,-0.07923412428877682,-0.07905996472237622,-0.07888580274284754,-0.07871163835550668,-0.07853747156566962,-0.07836330237865241,-0.07818913079977116,-0.07801495683434209,-0.07784078048768146,-0.0776666017651056,-0.07749242067193095,-0.07731823721347397,-0.07714405139505125,-0.07696986322197938,-0.0767956726995751,-0.07662147983315518,-0.07644728462803645,-0.07627308708953583,-0.07609888722297031,-0.07592468503365697,-0.07575048052691292,-0.07557627370805538,-0.0754020645824016,-0.07522785315526893,-0.0750536394319748,-0.07487942341783667,-0.07470520511817211,-0.07453098453829872,-0.07435676168353422,-0.07418253655919636,-0.07400830917060297,-0.07383407952307194,-0.07365984762192127,-0.07348561347246896,-0.07331137708003314,-0.07313713844993198,-0.07296289758748374,-0.0727886544980067,-0.07261440918681926,-0.07244016165923985,-0.07226591192058701,-0.07209165997617929,-0.07191740583133538,-0.07174314949137396,-0.07156889096161384,-0.07139463024737386,-0.07122036735397293,-0.07104610228673004,-0.07087183505096425,-0.07069756565199467,-0.07052329409514048,-0.07034902038572093,-0.07017474452905532,-0.07000046653046305,-0.06982618639526356,-0.06965190412877635,-0.06947761973632101,-0.06930333322321718,-0.06912904459478454,-0.06895475385634289,-0.06878046101321204,-0.06860616607071192,-0.06843186903416246,-0.06825756990888371,-0.06808326870019572,-0.0679089654134187,-0.06773466005387282,-0.06756035262687839,-0.06738604313775573,-0.06721173159182527,-0.06703741799440746,-0.06686310235082284,-0.06668878466639198,-0.06651446494643559,-0.06634014319627433,-0.06616581942122902,-0.0659914936266205,-0.06581716581776965,-0.06564283599999746,-0.06546850417862493,-0.06529417035897317,-0.06511983454636332,-0.06494549674611659,-0.06477115696355426,-0.06459681520399764,-0.06442247147276814,-0.06424812577518721,-0.06407377811657634,-0.06389942850225713,-0.06372507693755121,-0.06355072342778023,-0.06337636797826599,-0.06320201059433027,-0.06302765128129495,-0.06285329004448195,-0.06267892688921325,-0.06250456182081092,-0.06233019484459703,-0.06215582596589376,-0.06198145519002332,-0.061807082522308,-0.06163270796807012,-0.06145833153263208,-0.06128395322131633,-0.06110957303944537,-0.06093519099234177,-0.060760807085328154,-0.060586421323727185,-0.060412033712861614,-0.060237644258054224,-0.06006325296462786,-0.05988885983790543,-0.05971446488320989,-0.059540068105864256,-0.0593656695111916,-0.05919126910451504,-0.05901686689115777,-0.05884246287644301,-0.058668057065694064,-0.05849364946423428,-0.05831924007738705,-0.05814482891047583,-0.057970415968824136,-0.05779600125775553,-0.057621584782593625,-0.057447166548662096,-0.05727274656128467,-0.05709832482578513,-0.056923901347487295,-0.056749476131715056,-0.05657504918379236,-0.05640062050904319,-0.056226190112791584,-0.056051758000361655,-0.05587732417707754,-0.05570288864826344,-0.05552845141924362,-0.055354012495342365,-0.055179571881884056,-0.05500512958419308,-0.05483068560759391,-0.05465623995741105,-0.05448179263896906,-0.054307343657592565,-0.05413289301860622,-0.05395844072733475,-0.05378398678910291,-0.053609531209235506,-0.05343507399305742,-0.05326061514589356,-0.053086154673068896,-0.05291169257990844,-0.05273722887173724,-0.05256276355388044,-0.05238829663166318,-0.05221382811041068,-0.05203935799544819,-0.05186488629210104,-0.05169041300569457,-0.05151593814155418,-0.051341461705005344,-0.051166983701373556,-0.05099250413598436,-0.050818023014163355,-0.050643540341236186,-0.050469056122528555,-0.05029457036336619,-0.050120083069074874,-0.049945594244980455,-0.049771103896408805,-0.049596612028685844,-0.04942211864713756,-0.04924762375708996,-0.04907312736386911,-0.048898629472801124,-0.04872413008921216,-0.04854962921842842,-0.04837512686577614,-0.04820062303658164,-0.04802611773617123,-0.047851610969871304,-0.04767710274300829,-0.04750259306090866,-0.04732808192889894,-0.04715356935230567,-0.046979055336455466,-0.04680453988667498,-0.0466300230082909,-0.046455504706629965,-0.04628098498701896,-0.04610646385478469,-0.045931941315254035,-0.045757417373753904,-0.04558289203561125,-0.04540836530615306,-0.04523383719070637,-0.045059307694598275,-0.04488477682315588,-0.04471024458170635,-0.0445357109755769,-0.04436117601009477,-0.04418663969058725,-0.04401210202238166,-0.043837563010805394,-0.04366302266118584,-0.04348848097885046,-0.043313937969126755,-0.04313939363734224,-0.04296484798882451,-0.04279030102890117,-0.04261575276289987,-0.04244120319614831,-0.04226665233397422,-0.04209210018170537,-0.0419175467446696,-0.041742992028194724,-0.04156843603760865,-0.041393878778239315,-0.04121932025541468,-0.04104476047446275,-0.04087019944071158,-0.04069563715948925,-0.040521073636123874,-0.04034650887594362,-0.04017194288427668,-0.039997375666451306,-0.03982280722779575,-0.03964823757363833,-0.039473666709307395,-0.03929909464013132,-0.03912452137143854,-0.038949946908557506,-0.03877537125681672,-0.03860079442154469,-0.03842621640807,-0.038251637221721244,-0.03807705686782707,-0.03790247535171615,-0.03772789267871718,-0.03755330885415892,-0.037378723883370144,-0.03720413777167966,-0.037029550524416324,-0.036854962146909025,-0.036680372644486675,-0.03650578202247823,-0.03633119028621267,-0.03615659744101902,-0.03598200349222634,-0.03580740844516372,-0.035632812305160265,-0.03545821507754515,-0.03528361676764755,-0.035109017380796706,-0.03493441692232185,-0.034759815397552275,-0.03458521281181731,-0.034410609170446305,-0.03423600447876864,-0.03406139874211374,-0.033886791965811035,-0.03371218415519002,-0.03353757531558021,-0.033362965452311134,-0.03318835457071238,-0.033013742676113546,-0.032839129773844275,-0.032664515869234224,-0.032489900967613096,-0.03231528507431062,-0.03214066819465655,-0.031966050333980686,-0.031791431497612835,-0.031616811690882846,-0.03144219091912061,-0.03126756918765601,-0.031092946501819006,-0.030918322866939553,-0.03074369828834765,-0.030569072771373315,-0.030394446321346604,-0.0302198189435976,-0.030045190643456406,-0.029870561426253165,-0.029695931297318037,-0.02952130026198122,-0.029346668325572926,-0.029172035493423412,-0.028997401770862952,-0.02882276716322185,-0.028648131675830427,-0.02847349531401905,-0.028298858083118092,-0.028124219988457974,-0.027949581035369125,-0.027774941229182008,-0.027600300575227114,-0.02742565907883495,-0.027251016745336063,-0.02707637358006102,-0.026901729588340407,-0.026727084775504843,-0.026552439146884967,-0.026377792707811445,-0.026203145463614973,-0.02602849741962626,-0.025853848581176047,-0.0256791989535951,-0.025504548542214206,-0.025329897352364177,-0.025155245389375847,-0.02498059265858008,-0.024805939165307756,-0.024631284914889782,-0.024456629912657086,-0.02428197416394062,-0.02410731767407136,-0.023932660448380303,-0.02375800249219847,-0.023583343810856902,-0.023408684409686666,-0.023234024294018843,-0.023059363469184548,-0.022884701940514906,-0.02271003971334107,-0.022535376792994215,-0.022360713184805533,-0.022186048894106237,-0.022011383926227562,-0.02183671828650077,-0.021662051980257134,-0.021487385012827948,-0.021312717389544537,-0.021138049115738234,-0.020963380196740395,-0.020788710637882398,-0.020614040444495642,-0.020439369621911542,-0.020264698175461532,-0.020090026110477062,-0.019915353432289614,-0.01974068014623067,-0.01956600625763175,-0.019391331771824373,-0.01921665669414009,-0.019041981029910473,-0.018867304784467093,-0.018692627963141556,-0.01851795057126548,-0.018343272614170503,-0.018168594097188275,-0.017993915025650467,-0.01781923540488876,-0.01764455524023487,-0.017469874537020504,-0.017295193300577407,-0.017120511536237327,-0.01694582924933204,-0.016771146445193324,-0.016596463129152982,-0.01642177930654283,-0.016247094982694704,-0.016072410162940445,-0.015897724852611917,-0.015723039057040998,-0.015548352781559582,-0.015373666031499575,-0.015198978812192895,-0.015024291128971481,-0.01484960298716728,-0.014674914392112258,-0.014500225349138392,-0.014325535863577673,-0.014150845940762104,-0.013976155586023706,-0.013801464804694508,-0.013626773602106554,-0.013452081983591902,-0.013277389954482624,-0.013102697520110798,-0.012928004685808523,-0.012753311456907904,-0.01257861783874106,-0.012403923836640119,-0.012229229455937228,-0.012054534701964539,-0.01187983958005422,-0.011705144095538442,-0.011530448253749399,-0.011355752060019287,-0.011181055519680313,-0.011006358638064703,-0.01083166142050468,-0.010656963872332493,-0.010482265998880386,-0.010307567805480623,-0.010132869297465473,-0.009958170480167217,-0.009783471358918145,-0.009608771939050556,-0.009434072225896756,-0.009259372224789062,-0.009084671941059802,-0.008909971380041308,-0.008735270547065924,-0.008560569447466,-0.008385868086573897,-0.00821116646972198,-0.008036464602242626,-0.007861762489468217,-0.007687060136731142,-0.007512357549363799,-0.0073376547326985935,-0.007162951692067936,-0.006988248432804245,-0.006813544960239946,-0.006638841279707472,-0.006464137396539258,-0.006289433316067751,-0.0061147290436253995,-0.0059400245845446595,-0.005765319944157994,-0.005590615127797869,-0.0054159101407967565,-0.005241204988487137,-0.005066499676201491,-0.0048917942092723075,-0.004717088593032079,-0.004542382832813301,-0.004367676933948477,-0.004192970901770111,-0.0040182647416107135,-0.0038435584588027982,-0.0036688520586788827,-0.0034941455465714883,-0.0033194389278131376,-0.0031447322077363606,-0.0029700253916736864,-0.0027953184849576493,-0.002620611492920786,-0.002445904420895635,-0.0022711972742147377,-0.0020964900582106385,-0.0019217827782158825,-0.0017470754395630184,-0.0015723680475845949,-0.0013976606076131642,-0.0012229531249812785,-0.0010482456050214916,-0.0008735380530663592,-0.000698830474448437,-0.0005241228745002822,-0.0003494152585544523,-0.00017470763194350547,0.0],"x":[-10.0,-9.98998998998999,-9.97997997997998,-9.96996996996997,-9.95995995995996,-9.94994994994995,-9.93993993993994,-9.92992992992993,-9.91991991991992,-9.90990990990991,-9.8998998998999,-9.88988988988989,-9.87987987987988,-9.86986986986987,-9.85985985985986,-9.84984984984985,-9.83983983983984,-9.82982982982983,-9.81981981981982,-9.80980980980981,-9.7997997997998,-9.78978978978979,-9.77977977977978,-9.76976976976977,-9.75975975975976,-9.74974974974975,-9.73973973973974,-9.72972972972973,-9.71971971971972,-9.70970970970971,-9.6996996996997,-9.68968968968969,-9.67967967967968,-9.66966966966967,-9.65965965965966,-9.64964964964965,-9.63963963963964,-9.62962962962963,-9.61961961961962,-9.60960960960961,-9.5995995995996,-9.58958958958959,-9.57957957957958,-9.56956956956957,-9.55955955955956,-9.54954954954955,-9.53953953953954,-9.52952952952953,-9.51951951951952,-9.50950950950951,-9.4994994994995,-9.48948948948949,-9.47947947947948,-9.46946946946947,-9.45945945945946,-9.44944944944945,-9.43943943943944,-9.42942942942943,-9.41941941941942,-9.40940940940941,-9.3993993993994,-9.38938938938939,-9.37937937937938,-9.36936936936937,-9.35935935935936,-9.34934934934935,-9.33933933933934,-9.32932932932933,-9.31931931931932,-9.30930930930931,-9.2992992992993,-9.28928928928929,-9.27927927927928,-9.26926926926927,-9.25925925925926,-9.24924924924925,-9.23923923923924,-9.22922922922923,-9.21921921921922,-9.20920920920921,-9.1991991991992,-9.18918918918919,-9.17917917917918,-9.16916916916917,-9.15915915915916,-9.14914914914915,-9.13913913913914,-9.12912912912913,-9.11911911911912,-9.10910910910911,-9.0990990990991,-9.08908908908909,-9.07907907907908,-9.06906906906907,-9.05905905905906,-9.04904904904905,-9.03903903903904,-9.02902902902903,-9.01901901901902,-9.00900900900901,-8.998998998999,-8.98898898898899,-8.97897897897898,-8.96896896896897,-8.95895895895896,-8.94894894894895,-8.93893893893894,-8.92892892892893,-8.91891891891892,-8.90890890890891,-8.8988988988989,-8.88888888888889,-8.87887887887888,-8.86886886886887,-8.85885885885886,-8.84884884884885,-8.83883883883884,-8.82882882882883,-8.81881881881882,-8.80880880880881,-8.7987987987988,-8.78878878878879,-8.77877877877878,-8.76876876876877,-8.75875875875876,-8.74874874874875,-8.73873873873874,-8.72872872872873,-8.71871871871872,-8.70870870870871,-8.6986986986987,-8.68868868868869,-8.67867867867868,-8.66866866866867,-8.65865865865866,-8.64864864864865,-8.63863863863864,-8.62862862862863,-8.618618618618619,-8.608608608608609,-8.598598598598599,-8.588588588588589,-8.578578578578579,-8.568568568568569,-8.558558558558559,-8.548548548548549,-8.538538538538539,-8.528528528528529,-8.518518518518519,-8.508508508508509,-8.498498498498499,-8.488488488488489,-8.478478478478479,-8.468468468468469,-8.458458458458459,-8.448448448448449,-8.438438438438439,-8.428428428428429,-8.418418418418419,-8.408408408408409,-8.398398398398399,-8.388388388388389,-8.378378378378379,-8.368368368368369,-8.358358358358359,-8.348348348348349,-8.338338338338339,-8.328328328328329,-8.318318318318319,-8.308308308308309,-8.298298298298299,-8.288288288288289,-8.278278278278279,-8.268268268268269,-8.258258258258259,-8.248248248248249,-8.238238238238239,-8.228228228228229,-8.218218218218219,-8.208208208208209,-8.198198198198199,-8.188188188188189,-8.178178178178179,-8.168168168168169,-8.158158158158159,-8.148148148148149,-8.138138138138139,-8.128128128128129,-8.118118118118119,-8.108108108108109,-8.098098098098099,-8.088088088088089,-8.078078078078079,-8.068068068068069,-8.058058058058059,-8.048048048048049,-8.038038038038039,-8.028028028028029,-8.018018018018019,-8.008008008008009,-7.997997997997998,-7.987987987987988,-7.977977977977978,-7.967967967967968,-7.957957957957958,-7.947947947947948,-7.937937937937938,-7.927927927927928,-7.917917917917918,-7.907907907907908,-7.897897897897898,-7.887887887887888,-7.877877877877878,-7.867867867867868,-7.857857857857858,-7.847847847847848,-7.837837837837838,-7.827827827827828,-7.817817817817818,-7.807807807807808,-7.797797797797798,-7.787787787787788,-7.777777777777778,-7.767767767767768,-7.757757757757758,-7.747747747747748,-7.737737737737738,-7.727727727727728,-7.717717717717718,-7.707707707707708,-7.697697697697698,-7.687687687687688,-7.677677677677678,-7.667667667667668,-7.657657657657658,-7.647647647647648,-7.637637637637638,-7.627627627627628,-7.617617617617618,-7.607607607607608,-7.597597597597598,-7.587587587587588,-7.5775775775775776,-7.5675675675675675,-7.5575575575575575,-7.5475475475475475,-7.5375375375375375,-7.5275275275275275,-7.5175175175175175,-7.5075075075075075,-7.4974974974974975,-7.4874874874874875,-7.4774774774774775,-7.4674674674674675,-7.4574574574574575,-7.4474474474474475,-7.4374374374374375,-7.4274274274274275,-7.4174174174174174,-7.407407407407407,-7.397397397397397,-7.387387387387387,-7.377377377377377,-7.367367367367367,-7.357357357357357,-7.347347347347347,-7.337337337337337,-7.327327327327327,-7.317317317317317,-7.307307307307307,-7.297297297297297,-7.287287287287287,-7.277277277277277,-7.267267267267267,-7.257257257257257,-7.247247247247247,-7.237237237237237,-7.227227227227227,-7.217217217217217,-7.207207207207207,-7.197197197197197,-7.187187187187187,-7.177177177177177,-7.167167167167167,-7.157157157157157,-7.147147147147147,-7.137137137137137,-7.127127127127127,-7.117117117117117,-7.107107107107107,-7.097097097097097,-7.087087087087087,-7.077077077077077,-7.067067067067067,-7.057057057057057,-7.047047047047047,-7.037037037037037,-7.027027027027027,-7.017017017017017,-7.007007007007007,-6.996996996996997,-6.986986986986987,-6.976976976976977,-6.966966966966967,-6.956956956956957,-6.946946946946947,-6.936936936936937,-6.926926926926927,-6.916916916916917,-6.906906906906907,-6.896896896896897,-6.886886886886887,-6.876876876876877,-6.866866866866867,-6.856856856856857,-6.846846846846847,-6.836836836836837,-6.826826826826827,-6.816816816816817,-6.806806806806807,-6.796796796796797,-6.786786786786787,-6.776776776776777,-6.766766766766767,-6.756756756756757,-6.746746746746747,-6.736736736736737,-6.726726726726727,-6.716716716716717,-6.706706706706707,-6.696696696696697,-6.686686686686687,-6.676676676676677,-6.666666666666667,-6.656656656656657,-6.646646646646647,-6.636636636636637,-6.626626626626627,-6.616616616616617,-6.606606606606607,-6.596596596596597,-6.586586586586587,-6.576576576576577,-6.566566566566567,-6.556556556556557,-6.546546546546547,-6.536536536536537,-6.526526526526527,-6.516516516516517,-6.506506506506507,-6.496496496496497,-6.486486486486487,-6.476476476476477,-6.466466466466467,-6.456456456456457,-6.446446446446447,-6.436436436436437,-6.426426426426427,-6.416416416416417,-6.406406406406407,-6.396396396396397,-6.386386386386387,-6.376376376376377,-6.366366366366367,-6.356356356356357,-6.346346346346347,-6.336336336336337,-6.326326326326327,-6.316316316316317,-6.306306306306307,-6.296296296296297,-6.286286286286287,-6.276276276276277,-6.266266266266267,-6.256256256256257,-6.246246246246246,-6.236236236236236,-6.226226226226226,-6.216216216216216,-6.206206206206206,-6.196196196196196,-6.186186186186186,-6.176176176176176,-6.166166166166166,-6.156156156156156,-6.146146146146146,-6.136136136136136,-6.126126126126126,-6.116116116116116,-6.106106106106106,-6.096096096096096,-6.086086086086086,-6.076076076076076,-6.066066066066066,-6.056056056056056,-6.046046046046046,-6.036036036036036,-6.026026026026026,-6.016016016016016,-6.006006006006006,-5.995995995995996,-5.985985985985986,-5.975975975975976,-5.965965965965966,-5.955955955955956,-5.945945945945946,-5.935935935935936,-5.925925925925926,-5.915915915915916,-5.905905905905906,-5.895895895895896,-5.885885885885886,-5.875875875875876,-5.865865865865866,-5.8558558558558556,-5.8458458458458455,-5.8358358358358355,-5.8258258258258255,-5.8158158158158155,-5.8058058058058055,-5.7957957957957955,-5.7857857857857855,-5.7757757757757755,-5.7657657657657655,-5.7557557557557555,-5.7457457457457455,-5.7357357357357355,-5.7257257257257255,-5.7157157157157155,-5.7057057057057055,-5.6956956956956954,-5.685685685685685,-5.675675675675675,-5.665665665665665,-5.655655655655655,-5.645645645645645,-5.635635635635635,-5.625625625625625,-5.615615615615615,-5.605605605605605,-5.595595595595595,-5.585585585585585,-5.575575575575575,-5.565565565565565,-5.555555555555555,-5.545545545545545,-5.535535535535535,-5.525525525525525,-5.515515515515515,-5.505505505505505,-5.495495495495495,-5.485485485485485,-5.475475475475475,-5.465465465465465,-5.455455455455455,-5.445445445445445,-5.435435435435435,-5.425425425425425,-5.415415415415415,-5.405405405405405,-5.395395395395395,-5.385385385385385,-5.375375375375375,-5.365365365365365,-5.355355355355355,-5.345345345345345,-5.335335335335335,-5.325325325325325,-5.315315315315315,-5.305305305305305,-5.295295295295295,-5.285285285285285,-5.275275275275275,-5.265265265265265,-5.255255255255255,-5.245245245245245,-5.235235235235235,-5.225225225225225,-5.215215215215215,-5.205205205205205,-5.195195195195195,-5.185185185185185,-5.175175175175175,-5.165165165165165,-5.155155155155155,-5.145145145145145,-5.135135135135135,-5.125125125125125,-5.115115115115115,-5.105105105105105,-5.095095095095095,-5.085085085085085,-5.075075075075075,-5.065065065065065,-5.055055055055055,-5.045045045045045,-5.035035035035035,-5.025025025025025,-5.015015015015015,-5.005005005005005,-4.994994994994995,-4.984984984984985,-4.974974974974975,-4.964964964964965,-4.954954954954955,-4.944944944944945,-4.934934934934935,-4.924924924924925,-4.914914914914915,-4.904904904904905,-4.894894894894895,-4.884884884884885,-4.874874874874875,-4.864864864864865,-4.854854854854855,-4.844844844844845,-4.834834834834835,-4.824824824824825,-4.814814814814815,-4.804804804804805,-4.794794794794795,-4.784784784784785,-4.774774774774775,-4.764764764764765,-4.754754754754755,-4.744744744744745,-4.734734734734735,-4.724724724724725,-4.714714714714715,-4.704704704704705,-4.694694694694695,-4.684684684684685,-4.674674674674675,-4.664664664664665,-4.654654654654655,-4.644644644644645,-4.634634634634635,-4.624624624624625,-4.614614614614615,-4.604604604604605,-4.594594594594595,-4.584584584584585,-4.574574574574575,-4.564564564564565,-4.554554554554555,-4.544544544544545,-4.534534534534535,-4.524524524524525,-4.514514514514515,-4.504504504504505,-4.494494494494495,-4.484484484484485,-4.474474474474475,-4.464464464464465,-4.454454454454455,-4.444444444444445,-4.434434434434435,-4.424424424424425,-4.414414414414415,-4.404404404404405,-4.394394394394395,-4.384384384384385,-4.374374374374375,-4.364364364364365,-4.354354354354355,-4.344344344344345,-4.334334334334335,-4.324324324324325,-4.314314314314315,-4.3043043043043046,-4.2942942942942945,-4.2842842842842845,-4.2742742742742745,-4.2642642642642645,-4.2542542542542545,-4.2442442442442445,-4.2342342342342345,-4.2242242242242245,-4.2142142142142145,-4.2042042042042045,-4.1941941941941945,-4.1841841841841845,-4.1741741741741745,-4.1641641641641645,-4.1541541541541545,-4.1441441441441444,-4.134134134134134,-4.124124124124124,-4.114114114114114,-4.104104104104104,-4.094094094094094,-4.084084084084084,-4.074074074074074,-4.064064064064064,-4.054054054054054,-4.044044044044044,-4.034034034034034,-4.024024024024024,-4.014014014014014,-4.004004004004004,-3.993993993993994,-3.983983983983984,-3.973973973973974,-3.963963963963964,-3.953953953953954,-3.943943943943944,-3.933933933933934,-3.923923923923924,-3.913913913913914,-3.903903903903904,-3.893893893893894,-3.883883883883884,-3.873873873873874,-3.863863863863864,-3.853853853853854,-3.843843843843844,-3.833833833833834,-3.823823823823824,-3.813813813813814,-3.803803803803804,-3.793793793793794,-3.7837837837837838,-3.7737737737737738,-3.7637637637637638,-3.7537537537537538,-3.7437437437437437,-3.7337337337337337,-3.7237237237237237,-3.7137137137137137,-3.7037037037037037,-3.6936936936936937,-3.6836836836836837,-3.6736736736736737,-3.6636636636636637,-3.6536536536536537,-3.6436436436436437,-3.6336336336336337,-3.6236236236236237,-3.6136136136136137,-3.6036036036036037,-3.5935935935935936,-3.5835835835835836,-3.5735735735735736,-3.5635635635635636,-3.5535535535535536,-3.5435435435435436,-3.5335335335335336,-3.5235235235235236,-3.5135135135135136,-3.5035035035035036,-3.4934934934934936,-3.4834834834834836,-3.4734734734734736,-3.4634634634634636,-3.4534534534534536,-3.4434434434434436,-3.4334334334334335,-3.4234234234234235,-3.4134134134134135,-3.4034034034034035,-3.3933933933933935,-3.3833833833833835,-3.3733733733733735,-3.3633633633633635,-3.3533533533533535,-3.3433433433433435,-3.3333333333333335,-3.3233233233233235,-3.3133133133133135,-3.3033033033033035,-3.2932932932932935,-3.2832832832832834,-3.2732732732732734,-3.2632632632632634,-3.2532532532532534,-3.2432432432432434,-3.2332332332332334,-3.2232232232232234,-3.2132132132132134,-3.2032032032032034,-3.1931931931931934,-3.1831831831831834,-3.1731731731731734,-3.1631631631631634,-3.1531531531531534,-3.1431431431431434,-3.1331331331331334,-3.123123123123123,-3.113113113113113,-3.103103103103103,-3.093093093093093,-3.083083083083083,-3.073073073073073,-3.063063063063063,-3.053053053053053,-3.043043043043043,-3.033033033033033,-3.023023023023023,-3.013013013013013,-3.003003003003003,-2.992992992992993,-2.982982982982983,-2.972972972972973,-2.962962962962963,-2.952952952952953,-2.942942942942943,-2.932932932932933,-2.9229229229229228,-2.9129129129129128,-2.9029029029029028,-2.8928928928928928,-2.8828828828828827,-2.8728728728728727,-2.8628628628628627,-2.8528528528528527,-2.8428428428428427,-2.8328328328328327,-2.8228228228228227,-2.8128128128128127,-2.8028028028028027,-2.7927927927927927,-2.7827827827827827,-2.7727727727727727,-2.7627627627627627,-2.7527527527527527,-2.7427427427427427,-2.7327327327327327,-2.7227227227227226,-2.7127127127127126,-2.7027027027027026,-2.6926926926926926,-2.6826826826826826,-2.6726726726726726,-2.6626626626626626,-2.6526526526526526,-2.6426426426426426,-2.6326326326326326,-2.6226226226226226,-2.6126126126126126,-2.6026026026026026,-2.5925925925925926,-2.5825825825825826,-2.5725725725725725,-2.5625625625625625,-2.5525525525525525,-2.5425425425425425,-2.5325325325325325,-2.5225225225225225,-2.5125125125125125,-2.5025025025025025,-2.4924924924924925,-2.4824824824824825,-2.4724724724724725,-2.4624624624624625,-2.4524524524524525,-2.4424424424424425,-2.4324324324324325,-2.4224224224224224,-2.4124124124124124,-2.4024024024024024,-2.3923923923923924,-2.3823823823823824,-2.3723723723723724,-2.3623623623623624,-2.3523523523523524,-2.3423423423423424,-2.3323323323323324,-2.3223223223223224,-2.3123123123123124,-2.3023023023023024,-2.2922922922922924,-2.2822822822822824,-2.2722722722722724,-2.2622622622622623,-2.2522522522522523,-2.2422422422422423,-2.2322322322322323,-2.2222222222222223,-2.2122122122122123,-2.2022022022022023,-2.1921921921921923,-2.1821821821821823,-2.1721721721721723,-2.1621621621621623,-2.1521521521521523,-2.1421421421421423,-2.1321321321321323,-2.1221221221221223,-2.1121121121121122,-2.1021021021021022,-2.0920920920920922,-2.0820820820820822,-2.0720720720720722,-2.062062062062062,-2.052052052052052,-2.042042042042042,-2.032032032032032,-2.022022022022022,-2.012012012012012,-2.002002002002002,-1.991991991991992,-1.981981981981982,-1.971971971971972,-1.961961961961962,-1.951951951951952,-1.941941941941942,-1.931931931931932,-1.921921921921922,-1.911911911911912,-1.901901901901902,-1.8918918918918919,-1.8818818818818819,-1.8718718718718719,-1.8618618618618619,-1.8518518518518519,-1.8418418418418419,-1.8318318318318318,-1.8218218218218218,-1.8118118118118118,-1.8018018018018018,-1.7917917917917918,-1.7817817817817818,-1.7717717717717718,-1.7617617617617618,-1.7517517517517518,-1.7417417417417418,-1.7317317317317318,-1.7217217217217218,-1.7117117117117118,-1.7017017017017018,-1.6916916916916918,-1.6816816816816818,-1.6716716716716717,-1.6616616616616617,-1.6516516516516517,-1.6416416416416417,-1.6316316316316317,-1.6216216216216217,-1.6116116116116117,-1.6016016016016017,-1.5915915915915917,-1.5815815815815817,-1.5715715715715717,-1.5615615615615615,-1.5515515515515514,-1.5415415415415414,-1.5315315315315314,-1.5215215215215214,-1.5115115115115114,-1.5015015015015014,-1.4914914914914914,-1.4814814814814814,-1.4714714714714714,-1.4614614614614614,-1.4514514514514514,-1.4414414414414414,-1.4314314314314314,-1.4214214214214214,-1.4114114114114114,-1.4014014014014013,-1.3913913913913913,-1.3813813813813813,-1.3713713713713713,-1.3613613613613613,-1.3513513513513513,-1.3413413413413413,-1.3313313313313313,-1.3213213213213213,-1.3113113113113113,-1.3013013013013013,-1.2912912912912913,-1.2812812812812813,-1.2712712712712713,-1.2612612612612613,-1.2512512512512513,-1.2412412412412412,-1.2312312312312312,-1.2212212212212212,-1.2112112112112112,-1.2012012012012012,-1.1911911911911912,-1.1811811811811812,-1.1711711711711712,-1.1611611611611612,-1.1511511511511512,-1.1411411411411412,-1.1311311311311312,-1.1211211211211212,-1.1111111111111112,-1.1011011011011012,-1.0910910910910911,-1.0810810810810811,-1.0710710710710711,-1.0610610610610611,-1.0510510510510511,-1.0410410410410411,-1.031031031031031,-1.021021021021021,-1.011011011011011,-1.001001001001001,-0.990990990990991,-0.980980980980981,-0.970970970970971,-0.960960960960961,-0.950950950950951,-0.9409409409409409,-0.9309309309309309,-0.9209209209209209,-0.9109109109109109,-0.9009009009009009,-0.8908908908908909,-0.8808808808808809,-0.8708708708708709,-0.8608608608608609,-0.8508508508508509,-0.8408408408408409,-0.8308308308308309,-0.8208208208208209,-0.8108108108108109,-0.8008008008008008,-0.7907907907907908,-0.7807807807807807,-0.7707707707707707,-0.7607607607607607,-0.7507507507507507,-0.7407407407407407,-0.7307307307307307,-0.7207207207207207,-0.7107107107107107,-0.7007007007007007,-0.6906906906906907,-0.6806806806806807,-0.6706706706706707,-0.6606606606606606,-0.6506506506506506,-0.6406406406406406,-0.6306306306306306,-0.6206206206206206,-0.6106106106106106,-0.6006006006006006,-0.5905905905905906,-0.5805805805805806,-0.5705705705705706,-0.5605605605605606,-0.5505505505505506,-0.5405405405405406,-0.5305305305305306,-0.5205205205205206,-0.5105105105105106,-0.5005005005005005,-0.4904904904904905,-0.4804804804804805,-0.47047047047047047,-0.46046046046046046,-0.45045045045045046,-0.44044044044044045,-0.43043043043043044,-0.42042042042042044,-0.41041041041041043,-0.4004004004004004,-0.39039039039039036,-0.38038038038038036,-0.37037037037037035,-0.36036036036036034,-0.35035035035035034,-0.34034034034034033,-0.3303303303303303,-0.3203203203203203,-0.3103103103103103,-0.3003003003003003,-0.2902902902902903,-0.2802802802802803,-0.2702702702702703,-0.2602602602602603,-0.2502502502502503,-0.24024024024024024,-0.23023023023023023,-0.22022022022022023,-0.21021021021021022,-0.2002002002002002,-0.19019019019019018,-0.18018018018018017,-0.17017017017017017,-0.16016016016016016,-0.15015015015015015,-0.14014014014014015,-0.13013013013013014,-0.12012012012012012,-0.11011011011011011,-0.1001001001001001,-0.09009009009009009,-0.08008008008008008,-0.07007007007007007,-0.06006006006006006,-0.05005005005005005,-0.04004004004004004,-0.03003003003003003,-0.02002002002002002,-0.01001001001001001,0.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/positive.json b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/positive.json new file mode 100644 index 000000000000..155d4b2e6037 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/positive.json @@ -0,0 +1 @@ +{"expected":[0.17364817766693036,0.17347612158637143,0.17330406021084302,0.1731319935455969,0.17295992159588505,0.17278784436695957,0.17261576186407268,0.1724436740924769,0.17227158105742477,0.17209948276416903,0.17192737921796264,0.17175527042405864,0.17158315638771027,0.17141103711417094,0.17123891260869417,0.17106678287653374,0.17089464792294345,0.17072250775317738,0.17055036237248972,0.1703782117861348,0.17020605599936714,0.17003389501744143,0.16986172884561246,0.16968955748913525,0.1695173809532649,0.16934519924325678,0.1691730123643663,0.16900082032184907,0.16882862312096092,0.16865642076695772,0.1684842132650956,0.16831200062063081,0.16813978283881972,0.16796755992491894,0.16779533188418516,0.16762309872187525,0.16745086044324625,0.16727861705355535,0.16710636855805985,0.16693411496201732,0.1667618562706854,0.16658959248932187,0.16641732362318468,0.166245049677532,0.16607277065762208,0.16590048656871337,0.16572819741606443,0.165555903204934,0.165383603940581,0.16521129962826445,0.16503899027324356,0.16486667588077772,0.1646943564561264,0.16452203200454926,0.16434970253130615,0.16417736804165703,0.164005028540862,0.16383268403418136,0.16366033452687553,0.16348798002420512,0.1633156205314308,0.16314325605381352,0.16297088659661432,0.16279851216509433,0.16262613276451496,0.16245374840013765,0.1622813590772241,0.16210896480103607,0.1619365655768355,0.1617641614098845,0.16159175230544537,0.16141933826878044,0.16124691930515228,0.16107449541982363,0.16090206661805728,0.1607296329051163,0.1605571942862638,0.1603847507667631,0.1602123023518776,0.160039849046871,0.15986739085700696,0.15969492778754943,0.15952245984376243,0.1593499870309102,0.159177509354257,0.15900502681906742,0.15883253943060605,0.1586600471941377,0.1584875501149273,0.15831504819823994,0.15814254144934084,0.1579700298734954,0.15779751347596913,0.15762499226202772,0.157452466236937,0.15727993540596294,0.15710739977437163,0.15693485934742937,0.15676231413040254,0.15658976412855768,0.15641720934716155,0.15624464979148098,0.15607208546678292,0.15589951637833455,0.15572694253140312,0.1555543639312561,0.15538178058316104,0.15520919249238566,0.15503659966419783,0.15486400210386558,0.15469139981665703,0.1545187928078405,0.1543461810826844,0.15417356464645735,0.15400094350442808,0.15382831766186544,0.15365568712403843,0.15348305189621628,0.15331041198366824,0.15313776739166374,0.15296511812547242,0.15279246419036396,0.1526198055916083,0.1524471423344754,0.15227447442423542,0.15210180186615868,0.15192912466551564,0.15175644282757683,0.15158375635761304,0.1514110652608951,0.151238369542694,0.15106566920828093,0.15089296426292717,0.15072025471190414,0.15054754056048342,0.15037482181393672,0.15020209847753588,0.1500293705565529,0.14985663805625996,0.14968390098192924,0.14951115933883322,0.1493384131322444,0.14916566236743556,0.14899290704967943,0.14882014718424902,0.14864738277641745,0.14847461383145794,0.1483018403546439,0.14812906235124884,0.1479562798265464,0.14778349278581043,0.1476107012343148,0.14743790517733366,0.14726510462014117,0.14709229956801168,0.1469194900262197,0.14674667600003985,0.14657385749474688,0.14640103451561567,0.1462282070679213,0.14605537515693892,0.1458825387879438,0.14570969796621144,0.14553685269701738,0.14536400298563737,0.1451911488373472,0.1450182902574229,0.1448454272511406,0.14467255982377653,0.14449968798060708,0.14432681172690878,0.14415393106795832,0.14398104600903244,0.1438081565554081,0.14363526271236235,0.1434623644851724,0.1432894618791156,0.14311655489946937,0.14294364355151132,0.1427707278405192,0.14259780777177086,0.1424248833505443,0.14225195458211765,0.14207902147176918,0.14190608402477728,0.14173314224642045,0.1415601961419774,0.1413872457167269,0.14121429097594784,0.14104133192491933,0.14086836856892054,0.14069540091323077,0.1405224289631295,0.14034945272389626,0.1401764722008108,0.140003487399153,0.13983049832420275,0.13965750498124022,0.1394845073755456,0.13931150551239926,0.1391384993970817,0.13896548903487357,0.1387924744310556,0.13861945559090866,0.1384464325197138,0.13827340522275214,0.13810037370530492,0.13792733797265358,0.13775429803007963,0.13758125388286474,0.13740820553629068,0.13723515299563938,0.13706209626619284,0.13688903535323327,0.13671597026204296,0.13654290099790434,0.13636982756609992,0.13619674997191242,0.13602366822062462,0.13585058231751948,0.13567749226788,0.13550439807698947,0.13533129975013108,0.13515819729258838,0.13498509070964484,0.13481198000658423,0.1346388651886903,0.13446574626124702,0.13429262322953847,0.13411949609884882,0.1339463648744624,0.13377322956166365,0.13360009016573715,0.13342694669196756,0.1332537991456397,0.13308064753203855,0.13290749185644912,0.13273433212415667,0.13256116834044643,0.1323880005106039,0.1322148286399146,0.13204165273366422,0.1318684727971386,0.13169528883562362,0.13152210085440535,0.13134890885876999,0.1311757128540038,0.13100251284539324,0.1308293088382248,0.1306561008377852,0.13048288884936118,0.13030967287823966,0.13013645292970769,0.12996322900905238,0.12979000112156105,0.12961676927252108,0.12944353346721993,0.1292702937109453,0.12909705000898494,0.12892380236662668,0.12875055078915856,0.12857729528186868,0.12840403585004526,0.12823077249897666,0.12805750523395137,0.127884234060258,0.12771095898318524,0.12753768000802193,0.12736439714005698,0.12719111038457953,0.12701781974687876,0.12684452523224393,0.1266712268459645,0.12649792459332998,0.12632461847963009,0.12615130851015458,0.12597799469019336,0.1258046770250364,0.1256313555199739,0.12545803018029605,0.12528470101129324,0.12511136801825598,0.12493803120647486,0.12476469058124057,0.12459134614784396,0.12441799791157598,0.12424464587772771,0.1240712900515903,0.12389793043845508,0.12372456704361344,0.12355119987235692,0.12337782892997717,0.12320445422176594,0.12303107575301511,0.12285769352901665,0.1226843075550627,0.12251091783644544,0.12233752437845721,0.12216412718639048,0.1219907262655378,0.12181732162119181,0.12164391325864535,0.1214705011831913,0.12129708540012267,0.12112366591473259,0.12095024273231429,0.12077681585816115,0.12060338529756662,0.12042995105582427,0.1202565131382278,0.12008307155007103,0.11990962629664785,0.11973617738325229,0.11956272481517852,0.11938926859772074,0.11921580873617336,0.11904234523583082,0.11886887810198772,0.11869540733993876,0.11852193295497873,0.11834845495240255,0.11817497333750525,0.11800148811558198,0.11782799929192797,0.11765450687183858,0.11748101086060928,0.11730751126353564,0.11713400808591336,0.11696050133303823,0.11678699101020615,0.11661347712271312,0.1164399596758553,0.11626643867492889,0.11609291412523023,0.11591938603205579,0.1157458544007021,0.11557231923646584,0.11539878054464377,0.11522523833053278,0.11505169259942985,0.11487814335663209,0.11470459060743667,0.11453103435714092,0.11435747461104226,0.1141839113744382,0.11401034465262637,0.11383677445090451,0.11366320077457046,0.11348962362892215,0.11331604301925766,0.11314245895087514,0.11296887142907285,0.11279528045914916,0.11262168604640253,0.11244808819613158,0.11227448691363497,0.11210088220421147,0.11192727407316001,0.11175366252577958,0.11158004756736926,0.11140642920322828,0.11123280743865595,0.11105918227895167,0.11088555372941498,0.11071192179534549,0.11053828648204292,0.1103646477948071,0.11019100573893799,0.11001736031973558,0.10984371154250003,0.10967005941253158,0.10949640393513056,0.10932274511559742,0.10914908295923272,0.10897541747133709,0.10880174865721128,0.10862807652215614,0.10845440107147264,0.10828072231046183,0.10810704024442484,0.10793335487866296,0.10775966621847752,0.10758597426916999,0.10741227903604192,0.10723858052439496,0.10706487873953088,0.10689117368675155,0.1067174653713589,0.106543753798655,0.10637003897394201,0.10619632090252216,0.10602259958969784,0.10584887504077149,0.10567514726104565,0.10550141625582299,0.10532768203040625,0.10515394459009827,0.10498020394020201,0.1048064600860205,0.1046327130328569,0.10445896278601442,0.10428520935079642,0.10411145273250634,0.10393769293644768,0.10376392996792409,0.1035901638322393,0.10341639453469713,0.10324262208060148,0.10306884647525637,0.10289506772396592,0.10272128583203434,0.1025475008047659,0.10237371264746506,0.10219992136543625,0.1020261269639841,0.10185232944841327,0.10167852882402856,0.10150472509613483,0.10133091827003704,0.10115710835104028,0.10098329534444969,0.10080947925557052,0.10063566008970813,0.10046183785216795,0.10028801254825552,0.10011418418327646,0.09994035276253649,0.09976651829134144,0.0995926807749972,0.09941884021880977,0.09924499662808525,0.09907115000812984,0.09889730036424979,0.09872344770175148,0.0985495920259414,0.09837573334212606,0.09820187165561213,0.09802800697170634,0.09785413929571554,0.09768026863294663,0.09750639498870663,0.09733251836830263,0.09715863877704184,0.09698475622023153,0.09681087070317909,0.09663698223119198,0.09646309080957775,0.09628919644364406,0.09611529913869864,0.0959413989000493,0.09576749573300396,0.09559358964287064,0.09541968063495741,0.09524576871457248,0.0950718538870241,0.09489793615762064,0.09472401553167054,0.09455009201448235,0.09437616561136468,0.09420223632762625,0.09402830416857587,0.09385436913952241,0.09368043124577487,0.09350649049264229,0.09333254688543384,0.09315860042945874,0.09298465113002634,0.09281069899244603,0.09263674402202732,0.0924627862240798,0.09228882560391313,0.09211486216683706,0.09194089591816147,0.09176692686319625,0.09159295500725143,0.09141898035563711,0.09124500291366348,0.09107102268664082,0.09089703967987946,0.09072305389868986,0.09054906534838254,0.09037507403426812,0.09020107996165727,0.0900270831358608,0.08985308356218956,0.08967908124595449,0.08950507619246661,0.08933106840703706,0.08915705789497703,0.08898304466159779,0.08880902871221072,0.08863501005212725,0.08846098868665891,0.08828696462111732,0.08811293786081419,0.08793890841106125,0.0877648762771704,0.08759084146445358,0.08741680397822278,0.08724276382379013,0.08706872100646781,0.0868946755315681,0.08672062740440332,0.08654657663028592,0.08637252321452839,0.08619846716244334,0.08602440847934342,0.08585034717054141,0.08567628324135011,0.08550221669708247,0.08532814754305143,0.0851540757845701,0.0849800014269516,0.08480592447550919,0.08463184493555616,0.08445776281240591,0.08428367811137188,0.08410959083776764,0.08393550099690682,0.0837614085941031,0.08358731363467027,0.08341321612392218,0.08323911606717278,0.08306501346973608,0.08289090833692615,0.08271680067405719,0.08254269048644343,0.0823685777793992,0.08219446255823888,0.08202034482827697,0.08184622459482802,0.08167210186320664,0.08149797663872757,0.08132384892670556,0.08114971873245548,0.08097558606129227,0.08080145091853091,0.08062731330948654,0.08045317323947426,0.08027903071380935,0.0801048857378071,0.07993073831678288,0.07975658845605219,0.07958243616093051,0.07940828143673351,0.07923412428877682,0.07905996472237622,0.07888580274284754,0.07871163835550668,0.07853747156566962,0.07836330237865241,0.07818913079977116,0.07801495683434209,0.07784078048768146,0.0776666017651056,0.07749242067193095,0.07731823721347397,0.07714405139505125,0.07696986322197938,0.0767956726995751,0.07662147983315518,0.07644728462803645,0.07627308708953583,0.07609888722297031,0.07592468503365697,0.07575048052691292,0.07557627370805538,0.0754020645824016,0.07522785315526893,0.0750536394319748,0.07487942341783667,0.07470520511817211,0.07453098453829872,0.07435676168353422,0.07418253655919636,0.07400830917060297,0.07383407952307194,0.07365984762192127,0.07348561347246896,0.07331137708003314,0.07313713844993198,0.07296289758748374,0.0727886544980067,0.07261440918681926,0.07244016165923985,0.07226591192058701,0.07209165997617929,0.07191740583133538,0.07174314949137396,0.07156889096161384,0.07139463024737386,0.07122036735397293,0.07104610228673004,0.07087183505096425,0.07069756565199467,0.07052329409514048,0.07034902038572093,0.07017474452905532,0.07000046653046305,0.06982618639526356,0.06965190412877635,0.06947761973632101,0.06930333322321718,0.06912904459478454,0.06895475385634289,0.06878046101321204,0.06860616607071192,0.06843186903416246,0.06825756990888371,0.06808326870019572,0.0679089654134187,0.06773466005387282,0.06756035262687839,0.06738604313775573,0.06721173159182527,0.06703741799440746,0.06686310235082284,0.06668878466639198,0.06651446494643559,0.06634014319627433,0.06616581942122902,0.0659914936266205,0.06581716581776965,0.06564283599999746,0.06546850417862493,0.06529417035897317,0.06511983454636332,0.06494549674611659,0.06477115696355426,0.06459681520399764,0.06442247147276814,0.06424812577518721,0.06407377811657634,0.06389942850225713,0.06372507693755121,0.06355072342778023,0.06337636797826599,0.06320201059433027,0.06302765128129495,0.06285329004448195,0.06267892688921325,0.06250456182081092,0.06233019484459703,0.06215582596589376,0.06198145519002332,0.061807082522308,0.06163270796807012,0.06145833153263208,0.06128395322131633,0.06110957303944537,0.06093519099234177,0.060760807085328154,0.060586421323727185,0.060412033712861614,0.060237644258054224,0.06006325296462786,0.05988885983790543,0.05971446488320989,0.059540068105864256,0.0593656695111916,0.05919126910451504,0.05901686689115777,0.05884246287644301,0.058668057065694064,0.05849364946423428,0.05831924007738705,0.05814482891047583,0.057970415968824136,0.05779600125775553,0.057621584782593625,0.057447166548662096,0.05727274656128467,0.05709832482578513,0.056923901347487295,0.056749476131715056,0.05657504918379236,0.05640062050904319,0.056226190112791584,0.056051758000361655,0.05587732417707754,0.05570288864826344,0.05552845141924362,0.055354012495342365,0.055179571881884056,0.05500512958419308,0.05483068560759391,0.05465623995741105,0.05448179263896906,0.054307343657592565,0.05413289301860622,0.05395844072733475,0.05378398678910291,0.053609531209235506,0.05343507399305742,0.05326061514589356,0.053086154673068896,0.05291169257990844,0.05273722887173724,0.05256276355388044,0.05238829663166318,0.05221382811041068,0.05203935799544819,0.05186488629210104,0.05169041300569457,0.05151593814155418,0.051341461705005344,0.051166983701373556,0.05099250413598436,0.050818023014163355,0.050643540341236186,0.050469056122528555,0.05029457036336619,0.050120083069074874,0.049945594244980455,0.049771103896408805,0.049596612028685844,0.04942211864713756,0.04924762375708996,0.04907312736386911,0.048898629472801124,0.04872413008921216,0.04854962921842842,0.04837512686577614,0.04820062303658164,0.04802611773617123,0.047851610969871304,0.04767710274300829,0.04750259306090866,0.04732808192889894,0.04715356935230567,0.046979055336455466,0.04680453988667498,0.0466300230082909,0.046455504706629965,0.04628098498701896,0.04610646385478469,0.045931941315254035,0.045757417373753904,0.04558289203561125,0.04540836530615306,0.04523383719070637,0.045059307694598275,0.04488477682315588,0.04471024458170635,0.0445357109755769,0.04436117601009477,0.04418663969058725,0.04401210202238166,0.043837563010805394,0.04366302266118584,0.04348848097885046,0.043313937969126755,0.04313939363734224,0.04296484798882451,0.04279030102890117,0.04261575276289987,0.04244120319614831,0.04226665233397422,0.04209210018170537,0.0419175467446696,0.041742992028194724,0.04156843603760865,0.041393878778239315,0.04121932025541468,0.04104476047446275,0.04087019944071158,0.04069563715948925,0.040521073636123874,0.04034650887594362,0.04017194288427668,0.039997375666451306,0.03982280722779575,0.03964823757363833,0.039473666709307395,0.03929909464013132,0.03912452137143854,0.038949946908557506,0.03877537125681672,0.03860079442154469,0.03842621640807,0.038251637221721244,0.03807705686782707,0.03790247535171615,0.03772789267871718,0.03755330885415892,0.037378723883370144,0.03720413777167966,0.037029550524416324,0.036854962146909025,0.036680372644486675,0.03650578202247823,0.03633119028621267,0.03615659744101902,0.03598200349222634,0.03580740844516372,0.035632812305160265,0.03545821507754515,0.03528361676764755,0.035109017380796706,0.03493441692232185,0.034759815397552275,0.03458521281181731,0.034410609170446305,0.03423600447876864,0.03406139874211374,0.033886791965811035,0.03371218415519002,0.03353757531558021,0.033362965452311134,0.03318835457071238,0.033013742676113546,0.032839129773844275,0.032664515869234224,0.032489900967613096,0.03231528507431062,0.03214066819465655,0.031966050333980686,0.031791431497612835,0.031616811690882846,0.03144219091912061,0.03126756918765601,0.031092946501819006,0.030918322866939553,0.03074369828834765,0.030569072771373315,0.030394446321346604,0.0302198189435976,0.030045190643456406,0.029870561426253165,0.029695931297318037,0.02952130026198122,0.029346668325572926,0.029172035493423412,0.028997401770862952,0.02882276716322185,0.028648131675830427,0.02847349531401905,0.028298858083118092,0.028124219988457974,0.027949581035369125,0.027774941229182008,0.027600300575227114,0.02742565907883495,0.027251016745336063,0.02707637358006102,0.026901729588340407,0.026727084775504843,0.026552439146884967,0.026377792707811445,0.026203145463614973,0.02602849741962626,0.025853848581176047,0.0256791989535951,0.025504548542214206,0.025329897352364177,0.025155245389375847,0.02498059265858008,0.024805939165307756,0.024631284914889782,0.024456629912657086,0.02428197416394062,0.02410731767407136,0.023932660448380303,0.02375800249219847,0.023583343810856902,0.023408684409686666,0.023234024294018843,0.023059363469184548,0.022884701940514906,0.02271003971334107,0.022535376792994215,0.022360713184805533,0.022186048894106237,0.022011383926227562,0.02183671828650077,0.021662051980257134,0.021487385012827948,0.021312717389544537,0.021138049115738234,0.020963380196740395,0.020788710637882398,0.020614040444495642,0.020439369621911542,0.020264698175461532,0.020090026110477062,0.019915353432289614,0.01974068014623067,0.01956600625763175,0.019391331771824373,0.01921665669414009,0.019041981029910473,0.018867304784467093,0.018692627963141556,0.01851795057126548,0.018343272614170503,0.018168594097188275,0.017993915025650467,0.01781923540488876,0.01764455524023487,0.017469874537020504,0.017295193300577407,0.017120511536237327,0.01694582924933204,0.016771146445193324,0.016596463129152982,0.01642177930654283,0.016247094982694704,0.016072410162940445,0.015897724852611917,0.015723039057040998,0.015548352781559582,0.015373666031499575,0.015198978812192895,0.015024291128971481,0.01484960298716728,0.014674914392112258,0.014500225349138392,0.014325535863577673,0.014150845940762104,0.013976155586023706,0.013801464804694508,0.013626773602106554,0.013452081983591902,0.013277389954482624,0.013102697520110798,0.012928004685808523,0.012753311456907904,0.01257861783874106,0.012403923836640119,0.012229229455937228,0.012054534701964539,0.01187983958005422,0.011705144095538442,0.011530448253749399,0.011355752060019287,0.011181055519680313,0.011006358638064703,0.01083166142050468,0.010656963872332493,0.010482265998880386,0.010307567805480623,0.010132869297465473,0.009958170480167217,0.009783471358918145,0.009608771939050556,0.009434072225896756,0.009259372224789062,0.009084671941059802,0.008909971380041308,0.008735270547065924,0.008560569447466,0.008385868086573897,0.00821116646972198,0.008036464602242626,0.007861762489468217,0.007687060136731142,0.007512357549363799,0.0073376547326985935,0.007162951692067936,0.006988248432804245,0.006813544960239946,0.006638841279707472,0.006464137396539258,0.006289433316067751,0.0061147290436253995,0.0059400245845446595,0.005765319944157994,0.005590615127797869,0.0054159101407967565,0.005241204988487137,0.005066499676201491,0.0048917942092723075,0.004717088593032079,0.004542382832813301,0.004367676933948477,0.004192970901770111,0.0040182647416107135,0.0038435584588027982,0.0036688520586788827,0.0034941455465714883,0.0033194389278131376,0.0031447322077363606,0.0029700253916736864,0.0027953184849576493,0.002620611492920786,0.002445904420895635,0.0022711972742147377,0.0020964900582106385,0.0019217827782158825,0.0017470754395630184,0.0015723680475845949,0.0013976606076131642,0.0012229531249812785,0.0010482456050214916,0.0008735380530663592,0.000698830474448437,0.0005241228745002822,0.0003494152585544523,0.00017470763194350547,0.0],"x":[10.0,9.98998998998999,9.97997997997998,9.96996996996997,9.95995995995996,9.94994994994995,9.93993993993994,9.92992992992993,9.91991991991992,9.90990990990991,9.8998998998999,9.88988988988989,9.87987987987988,9.86986986986987,9.85985985985986,9.84984984984985,9.83983983983984,9.82982982982983,9.81981981981982,9.80980980980981,9.7997997997998,9.78978978978979,9.77977977977978,9.76976976976977,9.75975975975976,9.74974974974975,9.73973973973974,9.72972972972973,9.71971971971972,9.70970970970971,9.6996996996997,9.68968968968969,9.67967967967968,9.66966966966967,9.65965965965966,9.64964964964965,9.63963963963964,9.62962962962963,9.61961961961962,9.60960960960961,9.5995995995996,9.58958958958959,9.57957957957958,9.56956956956957,9.55955955955956,9.54954954954955,9.53953953953954,9.52952952952953,9.51951951951952,9.50950950950951,9.4994994994995,9.48948948948949,9.47947947947948,9.46946946946947,9.45945945945946,9.44944944944945,9.43943943943944,9.42942942942943,9.41941941941942,9.40940940940941,9.3993993993994,9.38938938938939,9.37937937937938,9.36936936936937,9.35935935935936,9.34934934934935,9.33933933933934,9.32932932932933,9.31931931931932,9.30930930930931,9.2992992992993,9.28928928928929,9.27927927927928,9.26926926926927,9.25925925925926,9.24924924924925,9.23923923923924,9.22922922922923,9.21921921921922,9.20920920920921,9.1991991991992,9.18918918918919,9.17917917917918,9.16916916916917,9.15915915915916,9.14914914914915,9.13913913913914,9.12912912912913,9.11911911911912,9.10910910910911,9.0990990990991,9.08908908908909,9.07907907907908,9.06906906906907,9.05905905905906,9.04904904904905,9.03903903903904,9.02902902902903,9.01901901901902,9.00900900900901,8.998998998999,8.98898898898899,8.97897897897898,8.96896896896897,8.95895895895896,8.94894894894895,8.93893893893894,8.92892892892893,8.91891891891892,8.90890890890891,8.8988988988989,8.88888888888889,8.87887887887888,8.86886886886887,8.85885885885886,8.84884884884885,8.83883883883884,8.82882882882883,8.81881881881882,8.80880880880881,8.7987987987988,8.78878878878879,8.77877877877878,8.76876876876877,8.75875875875876,8.74874874874875,8.73873873873874,8.72872872872873,8.71871871871872,8.70870870870871,8.6986986986987,8.68868868868869,8.67867867867868,8.66866866866867,8.65865865865866,8.64864864864865,8.63863863863864,8.62862862862863,8.618618618618619,8.608608608608609,8.598598598598599,8.588588588588589,8.578578578578579,8.568568568568569,8.558558558558559,8.548548548548549,8.538538538538539,8.528528528528529,8.518518518518519,8.508508508508509,8.498498498498499,8.488488488488489,8.478478478478479,8.468468468468469,8.458458458458459,8.448448448448449,8.438438438438439,8.428428428428429,8.418418418418419,8.408408408408409,8.398398398398399,8.388388388388389,8.378378378378379,8.368368368368369,8.358358358358359,8.348348348348349,8.338338338338339,8.328328328328329,8.318318318318319,8.308308308308309,8.298298298298299,8.288288288288289,8.278278278278279,8.268268268268269,8.258258258258259,8.248248248248249,8.238238238238239,8.228228228228229,8.218218218218219,8.208208208208209,8.198198198198199,8.188188188188189,8.178178178178179,8.168168168168169,8.158158158158159,8.148148148148149,8.138138138138139,8.128128128128129,8.118118118118119,8.108108108108109,8.098098098098099,8.088088088088089,8.078078078078079,8.068068068068069,8.058058058058059,8.048048048048049,8.038038038038039,8.028028028028029,8.018018018018019,8.008008008008009,7.997997997997998,7.987987987987988,7.977977977977978,7.967967967967968,7.957957957957958,7.947947947947948,7.937937937937938,7.927927927927928,7.917917917917918,7.907907907907908,7.897897897897898,7.887887887887888,7.877877877877878,7.867867867867868,7.857857857857858,7.847847847847848,7.837837837837838,7.827827827827828,7.817817817817818,7.807807807807808,7.797797797797798,7.787787787787788,7.777777777777778,7.767767767767768,7.757757757757758,7.747747747747748,7.737737737737738,7.727727727727728,7.717717717717718,7.707707707707708,7.697697697697698,7.687687687687688,7.677677677677678,7.667667667667668,7.657657657657658,7.647647647647648,7.637637637637638,7.627627627627628,7.617617617617618,7.607607607607608,7.597597597597598,7.587587587587588,7.5775775775775776,7.5675675675675675,7.5575575575575575,7.5475475475475475,7.5375375375375375,7.5275275275275275,7.5175175175175175,7.5075075075075075,7.4974974974974975,7.4874874874874875,7.4774774774774775,7.4674674674674675,7.4574574574574575,7.4474474474474475,7.4374374374374375,7.4274274274274275,7.4174174174174174,7.407407407407407,7.397397397397397,7.387387387387387,7.377377377377377,7.367367367367367,7.357357357357357,7.347347347347347,7.337337337337337,7.327327327327327,7.317317317317317,7.307307307307307,7.297297297297297,7.287287287287287,7.277277277277277,7.267267267267267,7.257257257257257,7.247247247247247,7.237237237237237,7.227227227227227,7.217217217217217,7.207207207207207,7.197197197197197,7.187187187187187,7.177177177177177,7.167167167167167,7.157157157157157,7.147147147147147,7.137137137137137,7.127127127127127,7.117117117117117,7.107107107107107,7.097097097097097,7.087087087087087,7.077077077077077,7.067067067067067,7.057057057057057,7.047047047047047,7.037037037037037,7.027027027027027,7.017017017017017,7.007007007007007,6.996996996996997,6.986986986986987,6.976976976976977,6.966966966966967,6.956956956956957,6.946946946946947,6.936936936936937,6.926926926926927,6.916916916916917,6.906906906906907,6.896896896896897,6.886886886886887,6.876876876876877,6.866866866866867,6.856856856856857,6.846846846846847,6.836836836836837,6.826826826826827,6.816816816816817,6.806806806806807,6.796796796796797,6.786786786786787,6.776776776776777,6.766766766766767,6.756756756756757,6.746746746746747,6.736736736736737,6.726726726726727,6.716716716716717,6.706706706706707,6.696696696696697,6.686686686686687,6.676676676676677,6.666666666666667,6.656656656656657,6.646646646646647,6.636636636636637,6.626626626626627,6.616616616616617,6.606606606606607,6.596596596596597,6.586586586586587,6.576576576576577,6.566566566566567,6.556556556556557,6.546546546546547,6.536536536536537,6.526526526526527,6.516516516516517,6.506506506506507,6.496496496496497,6.486486486486487,6.476476476476477,6.466466466466467,6.456456456456457,6.446446446446447,6.436436436436437,6.426426426426427,6.416416416416417,6.406406406406407,6.396396396396397,6.386386386386387,6.376376376376377,6.366366366366367,6.356356356356357,6.346346346346347,6.336336336336337,6.326326326326327,6.316316316316317,6.306306306306307,6.296296296296297,6.286286286286287,6.276276276276277,6.266266266266267,6.256256256256257,6.246246246246246,6.236236236236236,6.226226226226226,6.216216216216216,6.206206206206206,6.196196196196196,6.186186186186186,6.176176176176176,6.166166166166166,6.156156156156156,6.146146146146146,6.136136136136136,6.126126126126126,6.116116116116116,6.106106106106106,6.096096096096096,6.086086086086086,6.076076076076076,6.066066066066066,6.056056056056056,6.046046046046046,6.036036036036036,6.026026026026026,6.016016016016016,6.006006006006006,5.995995995995996,5.985985985985986,5.975975975975976,5.965965965965966,5.955955955955956,5.945945945945946,5.935935935935936,5.925925925925926,5.915915915915916,5.905905905905906,5.895895895895896,5.885885885885886,5.875875875875876,5.865865865865866,5.8558558558558556,5.8458458458458455,5.8358358358358355,5.8258258258258255,5.8158158158158155,5.8058058058058055,5.7957957957957955,5.7857857857857855,5.7757757757757755,5.7657657657657655,5.7557557557557555,5.7457457457457455,5.7357357357357355,5.7257257257257255,5.7157157157157155,5.7057057057057055,5.6956956956956954,5.685685685685685,5.675675675675675,5.665665665665665,5.655655655655655,5.645645645645645,5.635635635635635,5.625625625625625,5.615615615615615,5.605605605605605,5.595595595595595,5.585585585585585,5.575575575575575,5.565565565565565,5.555555555555555,5.545545545545545,5.535535535535535,5.525525525525525,5.515515515515515,5.505505505505505,5.495495495495495,5.485485485485485,5.475475475475475,5.465465465465465,5.455455455455455,5.445445445445445,5.435435435435435,5.425425425425425,5.415415415415415,5.405405405405405,5.395395395395395,5.385385385385385,5.375375375375375,5.365365365365365,5.355355355355355,5.345345345345345,5.335335335335335,5.325325325325325,5.315315315315315,5.305305305305305,5.295295295295295,5.285285285285285,5.275275275275275,5.265265265265265,5.255255255255255,5.245245245245245,5.235235235235235,5.225225225225225,5.215215215215215,5.205205205205205,5.195195195195195,5.185185185185185,5.175175175175175,5.165165165165165,5.155155155155155,5.145145145145145,5.135135135135135,5.125125125125125,5.115115115115115,5.105105105105105,5.095095095095095,5.085085085085085,5.075075075075075,5.065065065065065,5.055055055055055,5.045045045045045,5.035035035035035,5.025025025025025,5.015015015015015,5.005005005005005,4.994994994994995,4.984984984984985,4.974974974974975,4.964964964964965,4.954954954954955,4.944944944944945,4.934934934934935,4.924924924924925,4.914914914914915,4.904904904904905,4.894894894894895,4.884884884884885,4.874874874874875,4.864864864864865,4.854854854854855,4.844844844844845,4.834834834834835,4.824824824824825,4.814814814814815,4.804804804804805,4.794794794794795,4.784784784784785,4.774774774774775,4.764764764764765,4.754754754754755,4.744744744744745,4.734734734734735,4.724724724724725,4.714714714714715,4.704704704704705,4.694694694694695,4.684684684684685,4.674674674674675,4.664664664664665,4.654654654654655,4.644644644644645,4.634634634634635,4.624624624624625,4.614614614614615,4.604604604604605,4.594594594594595,4.584584584584585,4.574574574574575,4.564564564564565,4.554554554554555,4.544544544544545,4.534534534534535,4.524524524524525,4.514514514514515,4.504504504504505,4.494494494494495,4.484484484484485,4.474474474474475,4.464464464464465,4.454454454454455,4.444444444444445,4.434434434434435,4.424424424424425,4.414414414414415,4.404404404404405,4.394394394394395,4.384384384384385,4.374374374374375,4.364364364364365,4.354354354354355,4.344344344344345,4.334334334334335,4.324324324324325,4.314314314314315,4.3043043043043046,4.2942942942942945,4.2842842842842845,4.2742742742742745,4.2642642642642645,4.2542542542542545,4.2442442442442445,4.2342342342342345,4.2242242242242245,4.2142142142142145,4.2042042042042045,4.1941941941941945,4.1841841841841845,4.1741741741741745,4.1641641641641645,4.1541541541541545,4.1441441441441444,4.134134134134134,4.124124124124124,4.114114114114114,4.104104104104104,4.094094094094094,4.084084084084084,4.074074074074074,4.064064064064064,4.054054054054054,4.044044044044044,4.034034034034034,4.024024024024024,4.014014014014014,4.004004004004004,3.993993993993994,3.983983983983984,3.973973973973974,3.963963963963964,3.953953953953954,3.943943943943944,3.933933933933934,3.923923923923924,3.913913913913914,3.903903903903904,3.893893893893894,3.883883883883884,3.873873873873874,3.863863863863864,3.853853853853854,3.843843843843844,3.833833833833834,3.823823823823824,3.813813813813814,3.803803803803804,3.793793793793794,3.7837837837837838,3.7737737737737738,3.7637637637637638,3.7537537537537538,3.7437437437437437,3.7337337337337337,3.7237237237237237,3.7137137137137137,3.7037037037037037,3.6936936936936937,3.6836836836836837,3.6736736736736737,3.6636636636636637,3.6536536536536537,3.6436436436436437,3.6336336336336337,3.6236236236236237,3.6136136136136137,3.6036036036036037,3.5935935935935936,3.5835835835835836,3.5735735735735736,3.5635635635635636,3.5535535535535536,3.5435435435435436,3.5335335335335336,3.5235235235235236,3.5135135135135136,3.5035035035035036,3.4934934934934936,3.4834834834834836,3.4734734734734736,3.4634634634634636,3.4534534534534536,3.4434434434434436,3.4334334334334335,3.4234234234234235,3.4134134134134135,3.4034034034034035,3.3933933933933935,3.3833833833833835,3.3733733733733735,3.3633633633633635,3.3533533533533535,3.3433433433433435,3.3333333333333335,3.3233233233233235,3.3133133133133135,3.3033033033033035,3.2932932932932935,3.2832832832832834,3.2732732732732734,3.2632632632632634,3.2532532532532534,3.2432432432432434,3.2332332332332334,3.2232232232232234,3.2132132132132134,3.2032032032032034,3.1931931931931934,3.1831831831831834,3.1731731731731734,3.1631631631631634,3.1531531531531534,3.1431431431431434,3.1331331331331334,3.123123123123123,3.113113113113113,3.103103103103103,3.093093093093093,3.083083083083083,3.073073073073073,3.063063063063063,3.053053053053053,3.043043043043043,3.033033033033033,3.023023023023023,3.013013013013013,3.003003003003003,2.992992992992993,2.982982982982983,2.972972972972973,2.962962962962963,2.952952952952953,2.942942942942943,2.932932932932933,2.9229229229229228,2.9129129129129128,2.9029029029029028,2.8928928928928928,2.8828828828828827,2.8728728728728727,2.8628628628628627,2.8528528528528527,2.8428428428428427,2.8328328328328327,2.8228228228228227,2.8128128128128127,2.8028028028028027,2.7927927927927927,2.7827827827827827,2.7727727727727727,2.7627627627627627,2.7527527527527527,2.7427427427427427,2.7327327327327327,2.7227227227227226,2.7127127127127126,2.7027027027027026,2.6926926926926926,2.6826826826826826,2.6726726726726726,2.6626626626626626,2.6526526526526526,2.6426426426426426,2.6326326326326326,2.6226226226226226,2.6126126126126126,2.6026026026026026,2.5925925925925926,2.5825825825825826,2.5725725725725725,2.5625625625625625,2.5525525525525525,2.5425425425425425,2.5325325325325325,2.5225225225225225,2.5125125125125125,2.5025025025025025,2.4924924924924925,2.4824824824824825,2.4724724724724725,2.4624624624624625,2.4524524524524525,2.4424424424424425,2.4324324324324325,2.4224224224224224,2.4124124124124124,2.4024024024024024,2.3923923923923924,2.3823823823823824,2.3723723723723724,2.3623623623623624,2.3523523523523524,2.3423423423423424,2.3323323323323324,2.3223223223223224,2.3123123123123124,2.3023023023023024,2.2922922922922924,2.2822822822822824,2.2722722722722724,2.2622622622622623,2.2522522522522523,2.2422422422422423,2.2322322322322323,2.2222222222222223,2.2122122122122123,2.2022022022022023,2.1921921921921923,2.1821821821821823,2.1721721721721723,2.1621621621621623,2.1521521521521523,2.1421421421421423,2.1321321321321323,2.1221221221221223,2.1121121121121122,2.1021021021021022,2.0920920920920922,2.0820820820820822,2.0720720720720722,2.062062062062062,2.052052052052052,2.042042042042042,2.032032032032032,2.022022022022022,2.012012012012012,2.002002002002002,1.991991991991992,1.981981981981982,1.971971971971972,1.961961961961962,1.951951951951952,1.941941941941942,1.931931931931932,1.921921921921922,1.911911911911912,1.901901901901902,1.8918918918918919,1.8818818818818819,1.8718718718718719,1.8618618618618619,1.8518518518518519,1.8418418418418419,1.8318318318318318,1.8218218218218218,1.8118118118118118,1.8018018018018018,1.7917917917917918,1.7817817817817818,1.7717717717717718,1.7617617617617618,1.7517517517517518,1.7417417417417418,1.7317317317317318,1.7217217217217218,1.7117117117117118,1.7017017017017018,1.6916916916916918,1.6816816816816818,1.6716716716716717,1.6616616616616617,1.6516516516516517,1.6416416416416417,1.6316316316316317,1.6216216216216217,1.6116116116116117,1.6016016016016017,1.5915915915915917,1.5815815815815817,1.5715715715715717,1.5615615615615615,1.5515515515515514,1.5415415415415414,1.5315315315315314,1.5215215215215214,1.5115115115115114,1.5015015015015014,1.4914914914914914,1.4814814814814814,1.4714714714714714,1.4614614614614614,1.4514514514514514,1.4414414414414414,1.4314314314314314,1.4214214214214214,1.4114114114114114,1.4014014014014013,1.3913913913913913,1.3813813813813813,1.3713713713713713,1.3613613613613613,1.3513513513513513,1.3413413413413413,1.3313313313313313,1.3213213213213213,1.3113113113113113,1.3013013013013013,1.2912912912912913,1.2812812812812813,1.2712712712712713,1.2612612612612613,1.2512512512512513,1.2412412412412412,1.2312312312312312,1.2212212212212212,1.2112112112112112,1.2012012012012012,1.1911911911911912,1.1811811811811812,1.1711711711711712,1.1611611611611612,1.1511511511511512,1.1411411411411412,1.1311311311311312,1.1211211211211212,1.1111111111111112,1.1011011011011012,1.0910910910910911,1.0810810810810811,1.0710710710710711,1.0610610610610611,1.0510510510510511,1.0410410410410411,1.031031031031031,1.021021021021021,1.011011011011011,1.001001001001001,0.990990990990991,0.980980980980981,0.970970970970971,0.960960960960961,0.950950950950951,0.9409409409409409,0.9309309309309309,0.9209209209209209,0.9109109109109109,0.9009009009009009,0.8908908908908909,0.8808808808808809,0.8708708708708709,0.8608608608608609,0.8508508508508509,0.8408408408408409,0.8308308308308309,0.8208208208208209,0.8108108108108109,0.8008008008008008,0.7907907907907908,0.7807807807807807,0.7707707707707707,0.7607607607607607,0.7507507507507507,0.7407407407407407,0.7307307307307307,0.7207207207207207,0.7107107107107107,0.7007007007007007,0.6906906906906907,0.6806806806806807,0.6706706706706707,0.6606606606606606,0.6506506506506506,0.6406406406406406,0.6306306306306306,0.6206206206206206,0.6106106106106106,0.6006006006006006,0.5905905905905906,0.5805805805805806,0.5705705705705706,0.5605605605605606,0.5505505505505506,0.5405405405405406,0.5305305305305306,0.5205205205205206,0.5105105105105106,0.5005005005005005,0.4904904904904905,0.4804804804804805,0.47047047047047047,0.46046046046046046,0.45045045045045046,0.44044044044044045,0.43043043043043044,0.42042042042042044,0.41041041041041043,0.4004004004004004,0.39039039039039036,0.38038038038038036,0.37037037037037035,0.36036036036036034,0.35035035035035034,0.34034034034034033,0.3303303303303303,0.3203203203203203,0.3103103103103103,0.3003003003003003,0.2902902902902903,0.2802802802802803,0.2702702702702703,0.2602602602602603,0.2502502502502503,0.24024024024024024,0.23023023023023023,0.22022022022022023,0.21021021021021022,0.2002002002002002,0.19019019019019018,0.18018018018018017,0.17017017017017017,0.16016016016016016,0.15015015015015015,0.14014014014014015,0.13013013013013014,0.12012012012012012,0.11011011011011011,0.1001001001001001,0.09009009009009009,0.08008008008008008,0.07007007007007007,0.06006006006006006,0.05005005005005005,0.04004004004004004,0.03003003003003003,0.02002002002002002,0.01001001001001001,0.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/runner.jl new file mode 100755 index 000000000000..0a32443fdbaf --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/runner.jl @@ -0,0 +1,70 @@ +#!/usr/bin/env julia +# +# @license Apache-2.0 +# +# Copyright (c) 2025 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +import JSON + +""" + gen( domain, name ) + +Generate fixture data and write to file. + +# Arguments + +* `domain`: domain +* `name::AbstractString`: output filename + +# Examples + +``` julia +julia> x = range( -1, stop = 1, length = 2001 ); +julia> gen( x, \"data.json\" ); +``` +""" +function gen( domain, name ) + x = collect( domain ); + y = sind.( x ); + + # Store data to be written to file as a collection: + data = Dict([ + ("x", x), + ("expected", y) + ]); + + # Based on the script directory, create an output filepath: + filepath = joinpath( dir, name ); + + # Write the data to the output filepath as JSON: + outfile = open( filepath, "w" ); + write( outfile, JSON.json(data) ); + write( outfile, "\n" ); + close( outfile ); +end + +# Get the filename: +file = @__FILE__; + +# Extract the directory in which this file resides: +dir = dirname( file ); + +# Generate fixture data for negative values: +x = range( -10.0, stop = 0, length = 1000 ); +gen( x, "negative.json" ); + +# Generate fixture data for positive values: +x = range( 10.0, stop = 0, length = 1000 ); +gen( x, "positive.json" ); diff --git a/lib/node_modules/@stdlib/math/base/special/sind/test/test.js b/lib/node_modules/@stdlib/math/base/special/sind/test/test.js new file mode 100644 index 000000000000..6ae285195bf0 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/test/test.js @@ -0,0 +1,123 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var tape = require( 'tape' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var abs = require( '@stdlib/math/base/special/abs' ); +var EPS = require( '@stdlib/constants/float64/eps' ); +var PINF = require( '@stdlib/constants/float64/pinf' ); +var NINF = require( '@stdlib/constants/float64/ninf' ); +var sind = require( './../lib' ); + + +// FIXTURES // + +var negative = require( './fixtures/julia/negative.json' ); +var positive = require( './fixtures/julia/positive.json' ); + + +// TESTS // + +tape( 'main export is a function', function test( t ) { + t.ok( true, __filename ); + t.true( typeof sind, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'if provided a `NaN`, the function returns `NaN`', function test( t ) { + var v = sind( NaN ); + t.equal( isnan( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function computes the sine of an angle measured in degrees (negative values)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = negative.x; + expected = negative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = sind( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine of an angle measured in degrees (positive values)', function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = positive.x; + expected = positive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = sind( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'if provided `+infinity`, the function returns `NaN`', function test( t ) { + var v = sind( PINF ); + t.equal( isnan( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided `-infinity`, the function returns `NaN`', function test( t ) { + var v = sind( NINF ); + t.equal( isnan( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided a multiple of `180.0`, the function returns `0.0`', function test( t ) { + var v = sind( 180.0 ); + t.equal( v, 0.0, 'returns expected value' ); + + v = sind( -180.0 ); + t.equal( v, 0.0, 'returns expected value' ); + + v = sind( 360.0 ); + t.equal( v, 0.0, 'returns expected value' ); + + t.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/sind/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/sind/test/test.native.js new file mode 100644 index 000000000000..673cb3a61419 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/test/test.native.js @@ -0,0 +1,132 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2024 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var tape = require( 'tape' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var abs = require( '@stdlib/math/base/special/abs' ); +var EPS = require( '@stdlib/constants/float64/eps' ); +var PINF = require( '@stdlib/constants/float64/pinf' ); +var NINF = require( '@stdlib/constants/float64/ninf' ); +var tryRequire = require( '@stdlib/utils/try-require' ); + + +// VARIABLES // + +var sind = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( sind instanceof Error ) +}; + + +// FIXTURES // + +var negative = require( './fixtures/julia/negative.json' ); +var positive = require( './fixtures/julia/positive.json' ); + + +// TESTS // + +tape( 'main export is a function', opts, function test( t ) { + t.ok( true, __filename ); + t.true( typeof sind, 'function', 'main export is a function' ); + t.end(); +}); + +tape( 'if provided a `NaN`, the function returns `NaN`', opts, function test( t ) { + var v = sind( NaN ); + t.equal( isnan( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'the function computes the sine of an angle measured in degrees (negative values)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = negative.x; + expected = negative.expected; + + for ( i = 0; i < x.length; i++ ) { + y = sind( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'the function computes the sine of an angle measured in degrees (positive values)', opts, function test( t ) { + var expected; + var delta; + var tol; + var x; + var y; + var i; + + x = positive.x; + expected = positive.expected; + + for ( i = 0; i < x.length; i++ ) { + y = sind( x[i] ); + if ( y === expected[ i ] ) { + t.equal( y, expected[ i ], 'x: '+x[i]+'. E: '+expected[i] ); + } else { + delta = abs( y - expected[i] ); + tol = EPS * abs( expected[i] ); + t.ok( delta <= tol, 'within tolerance. x: '+x[i]+'. y: '+y+'. E: '+expected[i]+'. tol: '+tol+'. Δ: '+delta+'.' ); + } + } + t.end(); +}); + +tape( 'if provided `+infinity`, the function returns `NaN`', opts, function test( t ) { + var v = sind( PINF ); + t.equal( isnan( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided `-infinity`, the function returns `NaN`', opts, function test( t ) { + var v = sind( NINF ); + t.equal( isnan( v ), true, 'returns expected value' ); + t.end(); +}); + +tape( 'if provided a multiple of `180.0`, the function returns `0.0`', opts, function test( t ) { + var v = sind( 180.0 ); + t.equal( v, 0.0, 'returns expected value' ); + + v = sind( -180.0 ); + t.equal( v, 0.0, 'returns expected value' ); + + v = sind( 360.0 ); + t.equal( v, 0.0, 'returns expected value' ); + + t.end(); +}); From 3a5076b2479297b785487d0e2be6916d20102fe9 Mon Sep 17 00:00:00 2001 From: Karan Anand Date: Mon, 24 Feb 2025 18:16:25 -0800 Subject: [PATCH 03/11] feat: add C implementation --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../include/stdlib/math/base/special/sind.h | 38 ++++++++++ .../math/base/special/sind/lib/native.js | 58 +++++++++++++++ .../math/base/special/sind/src/Makefile | 70 +++++++++++++++++++ .../math/base/special/sind/src/addon.c | 23 ++++++ .../@stdlib/math/base/special/sind/src/main.c | 45 ++++++++++++ 5 files changed, 234 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/include/stdlib/math/base/special/sind.h create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/lib/native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/src/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/src/addon.c create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/src/main.c diff --git a/lib/node_modules/@stdlib/math/base/special/sind/include/stdlib/math/base/special/sind.h b/lib/node_modules/@stdlib/math/base/special/sind/include/stdlib/math/base/special/sind.h new file mode 100644 index 000000000000..bd9a6ec132c5 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/include/stdlib/math/base/special/sind.h @@ -0,0 +1,38 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#ifndef STDLIB_MATH_BASE_SPECIAL_SIND_H +#define STDLIB_MATH_BASE_SPECIAL_SIND_H + +/* +* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler. +*/ +#ifdef __cplusplus +extern "C" { +#endif + +/** +* Computes the sine of an angle measured in degrees. +*/ +double stdlib_base_sind( const double x ); + +#ifdef __cplusplus +} +#endif + +#endif // !STDLIB_MATH_BASE_SPECIAL_SIND_H diff --git a/lib/node_modules/@stdlib/math/base/special/sind/lib/native.js b/lib/node_modules/@stdlib/math/base/special/sind/lib/native.js new file mode 100644 index 000000000000..ab59072f83ec --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/lib/native.js @@ -0,0 +1,58 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var addon = require( './../src/addon.node' ); + + +// MAIN // + +/** +* Computes the sine of an angle measured in degrees. +* +* @private +* @param {number} x - input value (in degrees) +* @returns {number} sine +* +* @example +* var v = sind( 0.0 ); +* // returns 0.0 +* +* @example +* var v = sind( 90.0 ); +* // returns 1.0 +* +* @example +* var v = sind( 30.0 ); +* // returns ~0.5 +* +* @example +* var v = sind( NaN ); +* // returns NaN +*/ +function sind( x ) { + return addon( x ); +} + + +// EXPORTS // + +module.exports = sind; diff --git a/lib/node_modules/@stdlib/math/base/special/sind/src/Makefile b/lib/node_modules/@stdlib/math/base/special/sind/src/Makefile new file mode 100644 index 000000000000..7733b6180cb4 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/src/Makefile @@ -0,0 +1,70 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2025 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + + +# RULES # + +#/ +# Removes generated files for building an add-on. +# +# @example +# make clean-addon +#/ +clean-addon: + $(QUIET) -rm -f *.o *.node + +.PHONY: clean-addon + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: clean-addon + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/sind/src/addon.c b/lib/node_modules/@stdlib/math/base/special/sind/src/addon.c new file mode 100644 index 000000000000..fd050fe425f1 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/src/addon.c @@ -0,0 +1,23 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/sind.h" +#include "stdlib/math/base/napi/unary.h" + +// cppcheck-suppress shadowFunction +STDLIB_MATH_BASE_NAPI_MODULE_D_D( stdlib_base_sind ) diff --git a/lib/node_modules/@stdlib/math/base/special/sind/src/main.c b/lib/node_modules/@stdlib/math/base/special/sind/src/main.c new file mode 100644 index 000000000000..0165741f274e --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/src/main.c @@ -0,0 +1,45 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/sind.h" +#include "stdlib/math/base/special/sin.h" +#include "stdlib/math/base/special/deg2rad.h" +#include "stdlib/math/base/assert/is_integer.h" +#include "stdlib/math/base/assert/is_infinite.h" + +/** +* Computes the sine of an angle measured in degrees. +* +* @param x input value (in degrees) +* @return sine +* +* @example +* double y = stdlib_base_sind( 0.0 ); +* // returns 0.0 +*/ +double stdlib_base_sind( const double x ) { + double xRad; + if ( stdlib_base_is_infinite( x ) ) { + return 0.0 / 0.0; // NaN + } + if ( stdlib_base_is_integer( x / 180.0 ) ) { + return 0.0; + } + xRad = stdlib_base_deg2rad( x ); + return stdlib_base_sin( xRad ); +} From 4fd29a5266f7f867b3c2a8d189e7cb0ed78dbfec Mon Sep 17 00:00:00 2001 From: Karan Anand Date: Mon, 24 Feb 2025 18:17:17 -0800 Subject: [PATCH 04/11] feat: add examples --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: passed - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../base/special/sind/examples/c/Makefile | 146 ++++++++++++++++++ .../base/special/sind/examples/c/example.c | 31 ++++ .../math/base/special/sind/examples/index.js | 29 ++++ 3 files changed, 206 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/examples/c/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/examples/c/example.c create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/examples/index.js diff --git a/lib/node_modules/@stdlib/math/base/special/sind/examples/c/Makefile b/lib/node_modules/@stdlib/math/base/special/sind/examples/c/Makefile new file mode 100644 index 000000000000..25ced822f96a --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/examples/c/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2025 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := example.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled examples. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/sind/examples/c/example.c b/lib/node_modules/@stdlib/math/base/special/sind/examples/c/example.c new file mode 100644 index 000000000000..bc5b0b729f72 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/examples/c/example.c @@ -0,0 +1,31 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/sind.h" +#include + +int main( void ) { + const double x[] = { 0.0, 30.0, 45.0, 60.0, 90.0 }; + + double y; + int i; + for ( i = 0; i < 5; i++ ) { + y = stdlib_base_sind( x[ i ] ); + printf( "sind(%lf) = %lf\n", x[ i ], y ); + } +} diff --git a/lib/node_modules/@stdlib/math/base/special/sind/examples/index.js b/lib/node_modules/@stdlib/math/base/special/sind/examples/index.js new file mode 100644 index 000000000000..3308ef5498b1 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/examples/index.js @@ -0,0 +1,29 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +var linspace = require( '@stdlib/array/base/linspace' ); +var sind = require( './../lib' ); + +var x = linspace( -180, 180, 100 ); + +var i; +for ( i = 0; i < x.length; i++ ) { + console.log( 'sind(%d) = %d', x[ i ], sind( x[ i ] ) ); +} From a6216167f113888348cc4ecb66e9d1bba34b69c8 Mon Sep 17 00:00:00 2001 From: Karan Anand Date: Mon, 24 Feb 2025 18:18:24 -0800 Subject: [PATCH 05/11] bench: add benchmarks --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: passed - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../base/special/sind/benchmark/benchmark.js | 52 +++++++ .../sind/benchmark/benchmark.native.js | 61 ++++++++ .../special/sind/benchmark/c/native/Makefile | 146 ++++++++++++++++++ .../sind/benchmark/c/native/benchmark.c | 136 ++++++++++++++++ 4 files changed, 395 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/benchmark/benchmark.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/benchmark/benchmark.native.js create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/benchmark/c/native/Makefile create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/benchmark/c/native/benchmark.c diff --git a/lib/node_modules/@stdlib/math/base/special/sind/benchmark/benchmark.js b/lib/node_modules/@stdlib/math/base/special/sind/benchmark/benchmark.js new file mode 100644 index 000000000000..3eb8f3a2b326 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/benchmark/benchmark.js @@ -0,0 +1,52 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var bench = require( '@stdlib/bench' ); +var uniform = require( '@stdlib/random/array/uniform' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var pkg = require( './../package.json' ).name; +var sind = require( './../lib' ); + + +// MAIN // + +bench( pkg, function benchmark( b ) { + var x; + var y; + var i; + + x = uniform( 100, -5.0, 5.0 ); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y = sind( x[ i % x.length ] ); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/sind/benchmark/benchmark.native.js b/lib/node_modules/@stdlib/math/base/special/sind/benchmark/benchmark.native.js new file mode 100644 index 000000000000..5aeece1f2cb9 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/benchmark/benchmark.native.js @@ -0,0 +1,61 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +'use strict'; + +// MODULES // + +var resolve = require( 'path' ).resolve; +var bench = require( '@stdlib/bench' ); +var uniform = require( '@stdlib/random/array/uniform' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var tryRequire = require( '@stdlib/utils/try-require' ); +var pkg = require( './../package.json' ).name; + + +// VARIABLES // + +var sind = tryRequire( resolve( __dirname, './../lib/native.js' ) ); +var opts = { + 'skip': ( sind instanceof Error ) +}; + + +// MAIN // + +bench( pkg+'::native', opts, function benchmark( b ) { + var x; + var y; + var i; + + x = uniform( 100, -5.0, 5.0 ); + + b.tic(); + for ( i = 0; i < b.iterations; i++ ) { + y = sind( x[ i % x.length ] ); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + } + b.toc(); + if ( isnan( y ) ) { + b.fail( 'should not return NaN' ); + } + b.pass( 'benchmark finished' ); + b.end(); +}); diff --git a/lib/node_modules/@stdlib/math/base/special/sind/benchmark/c/native/Makefile b/lib/node_modules/@stdlib/math/base/special/sind/benchmark/c/native/Makefile new file mode 100644 index 000000000000..a4bd7b38fd74 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/benchmark/c/native/Makefile @@ -0,0 +1,146 @@ +#/ +# @license Apache-2.0 +# +# Copyright (c) 2025 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +#/ + +# VARIABLES # + +ifndef VERBOSE + QUIET := @ +else + QUIET := +endif + +# Determine the OS ([1][1], [2][2]). +# +# [1]: https://en.wikipedia.org/wiki/Uname#Examples +# [2]: http://stackoverflow.com/a/27776822/2225624 +OS ?= $(shell uname) +ifneq (, $(findstring MINGW,$(OS))) + OS := WINNT +else +ifneq (, $(findstring MSYS,$(OS))) + OS := WINNT +else +ifneq (, $(findstring CYGWIN,$(OS))) + OS := WINNT +else +ifneq (, $(findstring Windows_NT,$(OS))) + OS := WINNT +endif +endif +endif +endif + +# Define the program used for compiling C source files: +ifdef C_COMPILER + CC := $(C_COMPILER) +else + CC := gcc +endif + +# Define the command-line options when compiling C files: +CFLAGS ?= \ + -std=c99 \ + -O3 \ + -Wall \ + -pedantic + +# Determine whether to generate position independent code ([1][1], [2][2]). +# +# [1]: https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#Code-Gen-Options +# [2]: http://stackoverflow.com/questions/5311515/gcc-fpic-option +ifeq ($(OS), WINNT) + fPIC ?= +else + fPIC ?= -fPIC +endif + +# List of includes (e.g., `-I /foo/bar -I /beep/boop/include`): +INCLUDE ?= + +# List of source files: +SOURCE_FILES ?= + +# List of libraries (e.g., `-lopenblas -lpthread`): +LIBRARIES ?= + +# List of library paths (e.g., `-L /foo/bar -L /beep/boop`): +LIBPATH ?= + +# List of C targets: +c_targets := benchmark.out + + +# RULES # + +#/ +# Compiles source files. +# +# @param {string} [C_COMPILER] - C compiler (e.g., `gcc`) +# @param {string} [CFLAGS] - C compiler options +# @param {(string|void)} [fPIC] - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} [INCLUDE] - list of includes (e.g., `-I /foo/bar -I /beep/boop/include`) +# @param {string} [SOURCE_FILES] - list of source files +# @param {string} [LIBPATH] - list of library paths (e.g., `-L /foo/bar -L /beep/boop`) +# @param {string} [LIBRARIES] - list of libraries (e.g., `-lopenblas -lpthread`) +# +# @example +# make +# +# @example +# make all +#/ +all: $(c_targets) + +.PHONY: all + +#/ +# Compiles C source files. +# +# @private +# @param {string} CC - C compiler (e.g., `gcc`) +# @param {string} CFLAGS - C compiler options +# @param {(string|void)} fPIC - compiler flag determining whether to generate position independent code (e.g., `-fPIC`) +# @param {string} INCLUDE - list of includes (e.g., `-I /foo/bar`) +# @param {string} SOURCE_FILES - list of source files +# @param {string} LIBPATH - list of library paths (e.g., `-L /foo/bar`) +# @param {string} LIBRARIES - list of libraries (e.g., `-lopenblas`) +#/ +$(c_targets): %.out: %.c + $(QUIET) $(CC) $(CFLAGS) $(fPIC) $(INCLUDE) -o $@ $(SOURCE_FILES) $< $(LIBPATH) -lm $(LIBRARIES) + +#/ +# Runs compiled benchmarks. +# +# @example +# make run +#/ +run: $(c_targets) + $(QUIET) ./$< + +.PHONY: run + +#/ +# Removes generated files. +# +# @example +# make clean +#/ +clean: + $(QUIET) -rm -f *.o *.out + +.PHONY: clean diff --git a/lib/node_modules/@stdlib/math/base/special/sind/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/math/base/special/sind/benchmark/c/native/benchmark.c new file mode 100644 index 000000000000..53a99716f6cb --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/benchmark/c/native/benchmark.c @@ -0,0 +1,136 @@ +/** +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "stdlib/math/base/special/sind.h" +#include +#include +#include +#include +#include + +#define NAME "sind" +#define ITERATIONS 1000000 +#define REPEATS 3 + +/** +* Prints the TAP version. +*/ +static void print_version( void ) { + printf( "TAP version 13\n" ); +} + +/** +* Prints the TAP summary. +* +* @param total total number of tests +* @param passing total number of passing tests +*/ +static void print_summary( int total, int passing ) { + printf( "#\n" ); + printf( "1..%d\n", total ); // TAP plan + printf( "# total %d\n", total ); + printf( "# pass %d\n", passing ); + printf( "#\n" ); + printf( "# ok\n" ); +} + +/** +* Prints benchmarks results. +* +* @param elapsed elapsed time in seconds +*/ +static void print_results( double elapsed ) { + double rate = (double)ITERATIONS / elapsed; + printf( " ---\n" ); + printf( " iterations: %d\n", ITERATIONS ); + printf( " elapsed: %0.9f\n", elapsed ); + printf( " rate: %0.9f\n", rate ); + printf( " ...\n" ); +} + +/** +* Returns a clock time. +* +* @return clock time +*/ +static double tic( void ) { + struct timeval now; + gettimeofday( &now, NULL ); + return (double)now.tv_sec + (double)now.tv_usec/1.0e6; +} + +/** +* Generates a random number on the interval [0,1). +* +* @return random number +*/ +static double rand_double( void ) { + int r = rand(); + return (double)r / ( (double)RAND_MAX + 1.0 ); +} + +/** +* Runs a benchmark. +* +* @return elapsed time in seconds +*/ +static double benchmark( void ) { + double x[ 100 ]; + double elapsed; + double y; + double t; + int i; + + for ( i = 0; i < 100; i++ ) { + x[ i ] = ( 10.0 * rand_double() ) - 5.0; + } + + t = tic(); + for ( i = 0; i < ITERATIONS; i++ ) { + y = stdlib_base_sind( x[ i%100 ] ); + if ( y != y ) { + printf( "should not return NaN\n" ); + break; + } + } + elapsed = tic() - t; + if ( y != y ) { + printf( "should not return NaN\n" ); + } + return elapsed; +} + +/** +* Main execution sequence. +*/ +int main( void ) { + double elapsed; + int i; + + // Use the current time to seed the random number generator: + srand( time( NULL ) ); + + print_version(); + for ( i = 0; i < REPEATS; i++ ) { + printf( "# c::native::%s\n", NAME ); + elapsed = benchmark(); + print_results( elapsed ); + printf( "ok %d benchmark finished\n", i+1 ); + } + print_summary( REPEATS, REPEATS ); +} From fe465772c1f65a6c902a071aeb4da1f82456fc3c Mon Sep 17 00:00:00 2001 From: Karan Anand Date: Mon, 24 Feb 2025 18:20:06 -0800 Subject: [PATCH 06/11] build: add dependencies --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: passed - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- .../math/base/special/sind/binding.gyp | 170 ++++++++++++++++++ .../base/special/sind/docs/types/index.d.ts | 48 +++++ .../math/base/special/sind/docs/types/test.ts | 44 +++++ .../math/base/special/sind/include.gypi | 53 ++++++ .../math/base/special/sind/manifest.json | 81 +++++++++ .../math/base/special/sind/package.json | 72 ++++++++ 6 files changed, 468 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/binding.gyp create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/docs/types/index.d.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/docs/types/test.ts create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/include.gypi create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/manifest.json create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/package.json diff --git a/lib/node_modules/@stdlib/math/base/special/sind/binding.gyp b/lib/node_modules/@stdlib/math/base/special/sind/binding.gyp new file mode 100644 index 000000000000..68a1ca11d160 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/binding.gyp @@ -0,0 +1,170 @@ +# @license Apache-2.0 +# +# Copyright (c) 2025 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A `.gyp` file for building a Node.js native add-on. +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # List of files to include in this file: + 'includes': [ + './include.gypi', + ], + + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Target name should match the add-on export name: + 'addon_target_name%': 'addon', + + # Set variables based on the host OS: + 'conditions': [ + [ + 'OS=="win"', + { + # Define the object file suffix: + 'obj': 'obj', + }, + { + # Define the object file suffix: + 'obj': 'o', + } + ], # end condition (OS=="win") + ], # end conditions + }, # end variables + + # Define compile targets: + 'targets': [ + + # Target to generate an add-on: + { + # The target name should match the add-on export name: + 'target_name': '<(addon_target_name)', + + # Define dependencies: + 'dependencies': [], + + # Define directories which contain relevant include headers: + 'include_dirs': [ + # Local include directory: + '<@(include_dirs)', + ], + + # List of source files: + 'sources': [ + '<@(src_files)', + ], + + # Settings which should be applied when a target's object files are used as linker input: + 'link_settings': { + # Define libraries: + 'libraries': [ + '<@(libraries)', + ], + + # Define library directories: + 'library_dirs': [ + '<@(library_dirs)', + ], + }, + + # C/C++ compiler flags: + 'cflags': [ + # Enable commonly used warning options: + '-Wall', + + # Aggressive optimization: + '-O3', + ], + + # C specific compiler flags: + 'cflags_c': [ + # Specify the C standard to which a program is expected to conform: + '-std=c99', + ], + + # C++ specific compiler flags: + 'cflags_cpp': [ + # Specify the C++ standard to which a program is expected to conform: + '-std=c++11', + ], + + # Linker flags: + 'ldflags': [], + + # Apply conditions based on the host OS: + 'conditions': [ + [ + 'OS=="mac"', + { + # Linker flags: + 'ldflags': [ + '-undefined dynamic_lookup', + '-Wl,-no-pie', + '-Wl,-search_paths_first', + ], + }, + ], # end condition (OS=="mac") + [ + 'OS!="win"', + { + # C/C++ flags: + 'cflags': [ + # Generate platform-independent code: + '-fPIC', + ], + }, + ], # end condition (OS!="win") + ], # end conditions + }, # end target <(addon_target_name) + + # Target to copy a generated add-on to a standard location: + { + 'target_name': 'copy_addon', + + # Declare that the output of this target is not linked: + 'type': 'none', + + # Define dependencies: + 'dependencies': [ + # Require that the add-on be generated before building this target: + '<(addon_target_name)', + ], + + # Define a list of actions: + 'actions': [ + { + 'action_name': 'copy_addon', + 'message': 'Copying addon...', + + # Explicitly list the inputs in the command-line invocation below: + 'inputs': [], + + # Declare the expected outputs: + 'outputs': [ + '<(addon_output_dir)/<(addon_target_name).node', + ], + + # Define the command-line invocation: + 'action': [ + 'cp', + '<(PRODUCT_DIR)/<(addon_target_name).node', + '<(addon_output_dir)/<(addon_target_name).node', + ], + }, + ], # end actions + }, # end target copy_addon + ], # end targets +} diff --git a/lib/node_modules/@stdlib/math/base/special/sind/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/sind/docs/types/index.d.ts new file mode 100644 index 000000000000..cd81932bc6b5 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/docs/types/index.d.ts @@ -0,0 +1,48 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +// TypeScript Version: 4.1 + +/** +* Computes the sine of an angle measured in degrees. +* +* @param x - input value (in degrees) +* @returns sine +* +* @example +* var v = sind( 0.0 ); +* // returns 0.0 +* +* @example +* var v = sind( 30.0 ); +* // returns ~0.5 +* +* @example +* var v = sind( 90.0); +* // returns 1.0 +* +* @example +* var v = sind( NaN ); +* // returns NaN +*/ +declare function sind( x: number ): number; + + +// EXPORTS // + +export = sind; diff --git a/lib/node_modules/@stdlib/math/base/special/sind/docs/types/test.ts b/lib/node_modules/@stdlib/math/base/special/sind/docs/types/test.ts new file mode 100644 index 000000000000..9ea0ec352091 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/docs/types/test.ts @@ -0,0 +1,44 @@ +/* +* @license Apache-2.0 +* +* Copyright (c) 2025 The Stdlib Authors. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +import sind = require( './index' ); + + +// TESTS // + +// The function returns a number... +{ + sind( 60.0 ); // $ExpectType number +} + +// The compiler throws an error if the function is provided a value other than a number... +{ + sind( true ); // $ExpectError + sind( false ); // $ExpectError + sind( null ); // $ExpectError + sind( undefined ); // $ExpectError + sind( '5' ); // $ExpectError + sind( [] ); // $ExpectError + sind( {} ); // $ExpectError + sind( ( x: number ): number => x ); // $ExpectError +} + +// The compiler throws an error if the function is provided insufficient arguments... +{ + sind(); // $ExpectError +} diff --git a/lib/node_modules/@stdlib/math/base/special/sind/include.gypi b/lib/node_modules/@stdlib/math/base/special/sind/include.gypi new file mode 100644 index 000000000000..ecfaf82a3279 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/include.gypi @@ -0,0 +1,53 @@ +# @license Apache-2.0 +# +# Copyright (c) 2025 The Stdlib Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# A GYP include file for building a Node.js native add-on. +# +# Main documentation: +# +# [1]: https://gyp.gsrc.io/docs/InputFormatReference.md +# [2]: https://gyp.gsrc.io/docs/UserDocumentation.md +{ + # Define variables to be used throughout the configuration for all targets: + 'variables': { + # Source directory: + 'src_dir': './src', + + # Include directories: + 'include_dirs': [ + '=0.10.0", + "npm": ">2.7.0" + }, + "os": [ + "aix", + "darwin", + "freebsd", + "linux", + "macos", + "openbsd", + "sunos", + "win32", + "windows" + ], + "keywords": [ + "stdlib", + "stdmath", + "mathematics", + "math", + "degree", + "cot", + "cotd", + "tan", + "tangent", + "sin", + "sine", + "sind", + "cos", + "cosine", + "trig", + "trigonometry" + ] +} From 247b859daae72bbeaa439d447d97b6690f30c1c9 Mon Sep 17 00:00:00 2001 From: Karan Anand Date: Mon, 24 Feb 2025 18:21:26 -0800 Subject: [PATCH 07/11] docs: add documentation --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: passed - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- .../@stdlib/math/base/special/sind/README.md | 185 ++++++++++++++++++ .../math/base/special/sind/docs/repl.txt | 28 +++ 2 files changed, 213 insertions(+) create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/README.md create mode 100644 lib/node_modules/@stdlib/math/base/special/sind/docs/repl.txt diff --git a/lib/node_modules/@stdlib/math/base/special/sind/README.md b/lib/node_modules/@stdlib/math/base/special/sind/README.md new file mode 100644 index 000000000000..b9ed22d673f0 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/README.md @@ -0,0 +1,185 @@ + + +# sind + +> Computes the [sine][trigonometric-functions] of an angle measured in degrees. + +
+ +
+ +
+ +## Usage + +```javascript +var sind = require( '@stdlib/math/base/special/sind' ); +``` + +#### sind( x ) + +Computes the [sine][trigonometric-functions] of `x` (in degrees). + +```javascript +var v = sind( 0.0 ); +// returns 0.0 + +v = sind( 30.0 ); +// returns ~0.5 + +v = sind( 90.0 ); +// returns 1.0 + +v = sind( NaN ); +// returns NaN +``` + +
+ + + +
+ +## Examples + + + +```javascript +var linspace = require( '@stdlib/array/base/linspace' ); +var sind = require( '@stdlib/math/base/special/sind' ); + +var x = linspace( -180, 180, 100 ); + +var i; +for ( i = 0; i < x.length; i++ ) { + console.log( sind( x[ i ] ) ); +} +``` + +
+ + + + + +* * * + +
+ +## C APIs + + + +
+ +
+ + + + + +
+ +### Usage + +```c +#include "stdlib/math/base/special/sind.h" +``` + +#### stdlib_base_sind( x ) + +Computes the [sine][trigonometric-functions] of `x` (in degrees). + +```c +double out = stdlib_base_sind( 0.0 ); +// returns 0.0 + +out = stdlib_base_sind( 30.0 ); +// returns ~0.5 +``` + +The function accepts the following arguments: + +- **x**: `[in] double` input value. + +```c +double stdlib_base_sind( const double x ); +``` + +
+ + + + + +
+ +
+ + + + + +
+ +### Examples + +```c +#include "stdlib/math/base/special/sind.h" +#include + +int main( void ) { + const double x[] = { 0.0, 30.0, 45.0, 60.0, 90.0 }; + + double y; + int i; + for ( i = 0; i < 5; i++ ) { + y = stdlib_base_sind( x[ i ] ); + printf( "sind(%lf) = %lf\n", x[ i ], y ); + } +} +``` + +
+ + + +
+ + + + + + + + + + + + + + diff --git a/lib/node_modules/@stdlib/math/base/special/sind/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/sind/docs/repl.txt new file mode 100644 index 000000000000..bb893e7553e8 --- /dev/null +++ b/lib/node_modules/@stdlib/math/base/special/sind/docs/repl.txt @@ -0,0 +1,28 @@ + +{{alias}}( x ) + Computes the sine of an angle measured in degrees. + + Parameters + ---------- + x: number + Input value (in degrees). + + Returns + ------- + y: number + Sine. + + Examples + -------- + > var y = {{alias}}( 0.0 ) + 0.0 + > y = {{alias}}( 90.0 ) + 1.0 + > y = {{alias}}( 30.0 ) + ~0.5 + > y = {{alias}}( NaN ) + NaN + + See Also + -------- + From bd251c35960e1ca5986db0fc921c70d43f06f5ab Mon Sep 17 00:00:00 2001 From: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Date: Tue, 25 Feb 2025 02:30:45 +0000 Subject: [PATCH 08/11] chore: update copyright years --- lib/node_modules/@stdlib/math/base/special/sind/test/test.js | 2 +- .../@stdlib/math/base/special/sind/test/test.native.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/sind/test/test.js b/lib/node_modules/@stdlib/math/base/special/sind/test/test.js index 6ae285195bf0..c4eec85bbcb0 100644 --- a/lib/node_modules/@stdlib/math/base/special/sind/test/test.js +++ b/lib/node_modules/@stdlib/math/base/special/sind/test/test.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/lib/node_modules/@stdlib/math/base/special/sind/test/test.native.js b/lib/node_modules/@stdlib/math/base/special/sind/test/test.native.js index 673cb3a61419..84580ec571de 100644 --- a/lib/node_modules/@stdlib/math/base/special/sind/test/test.native.js +++ b/lib/node_modules/@stdlib/math/base/special/sind/test/test.native.js @@ -1,7 +1,7 @@ /** * @license Apache-2.0 * -* Copyright (c) 2024 The Stdlib Authors. +* Copyright (c) 2025 The Stdlib Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. From 4f5e835aaff3ce4174de5730c0957f2fd6aabdaa Mon Sep 17 00:00:00 2001 From: Karan Anand Date: Mon, 24 Feb 2025 23:55:48 -0800 Subject: [PATCH 09/11] refactor: update sind function to improve modular reduction and edge case handling --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- .../math/base/special/sind/lib/main.js | 46 +++++++++++++++---- .../math/base/special/sind/manifest.json | 24 +++++++--- .../@stdlib/math/base/special/sind/src/main.c | 42 ++++++++++++++--- .../sind/test/fixtures/julia/negative.json | 2 +- .../sind/test/fixtures/julia/positive.json | 2 +- .../sind/test/fixtures/julia/runner.jl | 4 +- 6 files changed, 96 insertions(+), 24 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js b/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js index c14d6e3c95ae..60a7fb15c099 100644 --- a/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js @@ -20,10 +20,14 @@ // MODULES // -var sin = require( '@stdlib/math/base/special/sin' ); var deg2rad = require( '@stdlib/math/base/special/deg2rad' ); -var isInteger = require( '@stdlib/math/base/assert/is-integer' ); -var isInfinite = require( '@stdlib/assert/is-infinite' ); +var kernelSin = require( '@stdlib/math/base/special/kernel-sin' ); +var kernelCos = require( '@stdlib/math/base/special/kernel-cos' ); +var fmod = require( '@stdlib/math/base/special/fmod' ); +var signum = require( '@stdlib/math/base/special/signum' ); +var abs = require( '@stdlib/math/base/special/abs' ); +var isnan = require( '@stdlib/math/base/assert/is-nan' ); +var isInfinite = require( '@stdlib/math/base/assert/is-infinite' ); // MAIN // @@ -52,17 +56,43 @@ var isInfinite = require( '@stdlib/assert/is-infinite' ); */ function sind( x ) { var xRad; + var arx; + var rx; - if ( isInfinite( x ) ) { + if ( + isInfinite( x ) || + isnan( x ) + ) { return NaN; } - if ( isInteger( x / 180.0 ) ) { + rx = fmod( x, 360.0 ); + arx = abs( rx ); + + if ( rx === 0.0 ) { return 0.0; } - - xRad = deg2rad( x ); - return sin( xRad ); + if ( arx < 45.0 ) { + xRad = deg2rad( rx ); + return kernelSin( xRad, 0.0 ); + } + if ( arx <= 135.0 ) { + xRad = deg2rad( 90.0 - arx ); + return signum( rx ) * kernelCos( xRad, 0.0 ); + } + if ( arx === 180.0 ) { + return signum( rx ) * 0.0; + } + if ( arx < 225.0 ) { + xRad = deg2rad( ( 180.0-arx ) * signum( rx ) ); + return kernelSin( xRad, 0.0 ); + } + if ( arx <= 315.0 ) { + xRad = deg2rad( 270.0 - arx ); + return -signum( rx ) * kernelCos( xRad, 0.0 ); + } + xRad = deg2rad( rx - ( 360.0*signum( rx ) ) ); + return kernelSin( xRad, 0.0 ); } diff --git a/lib/node_modules/@stdlib/math/base/special/sind/manifest.json b/lib/node_modules/@stdlib/math/base/special/sind/manifest.json index 53ed7b5a15bd..01aba340dce1 100644 --- a/lib/node_modules/@stdlib/math/base/special/sind/manifest.json +++ b/lib/node_modules/@stdlib/math/base/special/sind/manifest.json @@ -37,10 +37,14 @@ "libpath": [], "dependencies": [ "@stdlib/math/base/napi/unary", - "@stdlib/math/base/assert/is-integer", + "@stdlib/math/base/assert/is-nan", "@stdlib/math/base/assert/is-infinite", "@stdlib/math/base/special/deg2rad", - "@stdlib/math/base/special/sin" + "@stdlib/math/base/special/kernel-sin", + "@stdlib/math/base/special/kernel-cos", + "@stdlib/math/base/special/signum", + "@stdlib/math/base/special/abs", + "@stdlib/math/base/special/fmod" ] }, { @@ -54,10 +58,14 @@ "libraries": [], "libpath": [], "dependencies": [ - "@stdlib/math/base/assert/is-integer", + "@stdlib/math/base/assert/is-nan", "@stdlib/math/base/assert/is-infinite", "@stdlib/math/base/special/deg2rad", - "@stdlib/math/base/special/sin" + "@stdlib/math/base/special/kernel-sin", + "@stdlib/math/base/special/kernel-cos", + "@stdlib/math/base/special/signum", + "@stdlib/math/base/special/abs", + "@stdlib/math/base/special/fmod" ] }, { @@ -71,10 +79,14 @@ "libraries": [], "libpath": [], "dependencies": [ - "@stdlib/math/base/assert/is-integer", + "@stdlib/math/base/assert/is-nan", "@stdlib/math/base/assert/is-infinite", "@stdlib/math/base/special/deg2rad", - "@stdlib/math/base/special/sin" + "@stdlib/math/base/special/kernel-sin", + "@stdlib/math/base/special/kernel-cos", + "@stdlib/math/base/special/signum", + "@stdlib/math/base/special/abs", + "@stdlib/math/base/special/fmod" ] } ] diff --git a/lib/node_modules/@stdlib/math/base/special/sind/src/main.c b/lib/node_modules/@stdlib/math/base/special/sind/src/main.c index 0165741f274e..2034f2d811ae 100644 --- a/lib/node_modules/@stdlib/math/base/special/sind/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/sind/src/main.c @@ -17,9 +17,13 @@ */ #include "stdlib/math/base/special/sind.h" -#include "stdlib/math/base/special/sin.h" +#include "stdlib/math/base/special/kernel_sin.h" +#include "stdlib/math/base/special/kernel_cos.h" #include "stdlib/math/base/special/deg2rad.h" -#include "stdlib/math/base/assert/is_integer.h" +#include "stdlib/math/base/special/signum.h" +#include "stdlib/math/base/special/abs.h" +#include "stdlib/math/base/special/fmod.h" +#include "stdlib/math/base/assert/is_nan.h" #include "stdlib/math/base/assert/is_infinite.h" /** @@ -34,12 +38,38 @@ */ double stdlib_base_sind( const double x ) { double xRad; - if ( stdlib_base_is_infinite( x ) ) { + double arx; + double rx; + + if ( stdlib_base_is_infinite( x ) || stdlib_base_is_nan( x ) ) { return 0.0 / 0.0; // NaN } - if ( stdlib_base_is_integer( x / 180.0 ) ) { + + rx = stdlib_base_fmod( x, 360.0 ); + arx = stdlib_base_abs( rx ); + + if ( rx == 0.0 ) { return 0.0; } - xRad = stdlib_base_deg2rad( x ); - return stdlib_base_sin( xRad ); + if ( arx < 45.0 ) { + xRad = stdlib_base_deg2rad( rx ); + return stdlib_base_kernel_sin( xRad, 0.0 ); + } + if ( arx <= 135.0 ) { + xRad = stdlib_base_deg2rad( 90.0 - arx ); + return stdlib_base_signum( rx ) * stdlib_base_kernel_cos( xRad, 0.0 ); + } + if ( arx == 180.0 ) { + return stdlib_base_signum( rx ) * 0.0; + } + if ( arx < 225.0 ) { + xRad = stdlib_base_deg2rad( ( 180.0-arx ) * stdlib_base_signum( rx ) ); + return stdlib_base_kernel_sin( xRad, 0.0 ); + } + if ( arx <= 315.0 ) { + xRad = stdlib_base_deg2rad( 270.0 - arx ); + return -stdlib_base_signum( rx ) * stdlib_base_kernel_cos( xRad, 0.0 ); + } + xRad = stdlib_base_deg2rad( rx - ( 360.0*stdlib_base_signum( rx ) ) ); + return stdlib_base_kernel_sin( xRad, 0.0 ); } diff --git a/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/negative.json b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/negative.json index 67c1867bc8b4..ab443224b48a 100644 --- a/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/negative.json +++ b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/negative.json @@ -1 +1 @@ -{"expected":[-0.17364817766693036,-0.17347612158637143,-0.17330406021084302,-0.1731319935455969,-0.17295992159588505,-0.17278784436695957,-0.17261576186407268,-0.1724436740924769,-0.17227158105742477,-0.17209948276416903,-0.17192737921796264,-0.17175527042405864,-0.17158315638771027,-0.17141103711417094,-0.17123891260869417,-0.17106678287653374,-0.17089464792294345,-0.17072250775317738,-0.17055036237248972,-0.1703782117861348,-0.17020605599936714,-0.17003389501744143,-0.16986172884561246,-0.16968955748913525,-0.1695173809532649,-0.16934519924325678,-0.1691730123643663,-0.16900082032184907,-0.16882862312096092,-0.16865642076695772,-0.1684842132650956,-0.16831200062063081,-0.16813978283881972,-0.16796755992491894,-0.16779533188418516,-0.16762309872187525,-0.16745086044324625,-0.16727861705355535,-0.16710636855805985,-0.16693411496201732,-0.1667618562706854,-0.16658959248932187,-0.16641732362318468,-0.166245049677532,-0.16607277065762208,-0.16590048656871337,-0.16572819741606443,-0.165555903204934,-0.165383603940581,-0.16521129962826445,-0.16503899027324356,-0.16486667588077772,-0.1646943564561264,-0.16452203200454926,-0.16434970253130615,-0.16417736804165703,-0.164005028540862,-0.16383268403418136,-0.16366033452687553,-0.16348798002420512,-0.1633156205314308,-0.16314325605381352,-0.16297088659661432,-0.16279851216509433,-0.16262613276451496,-0.16245374840013765,-0.1622813590772241,-0.16210896480103607,-0.1619365655768355,-0.1617641614098845,-0.16159175230544537,-0.16141933826878044,-0.16124691930515228,-0.16107449541982363,-0.16090206661805728,-0.1607296329051163,-0.1605571942862638,-0.1603847507667631,-0.1602123023518776,-0.160039849046871,-0.15986739085700696,-0.15969492778754943,-0.15952245984376243,-0.1593499870309102,-0.159177509354257,-0.15900502681906742,-0.15883253943060605,-0.1586600471941377,-0.1584875501149273,-0.15831504819823994,-0.15814254144934084,-0.1579700298734954,-0.15779751347596913,-0.15762499226202772,-0.157452466236937,-0.15727993540596294,-0.15710739977437163,-0.15693485934742937,-0.15676231413040254,-0.15658976412855768,-0.15641720934716155,-0.15624464979148098,-0.15607208546678292,-0.15589951637833455,-0.15572694253140312,-0.1555543639312561,-0.15538178058316104,-0.15520919249238566,-0.15503659966419783,-0.15486400210386558,-0.15469139981665703,-0.1545187928078405,-0.1543461810826844,-0.15417356464645735,-0.15400094350442808,-0.15382831766186544,-0.15365568712403843,-0.15348305189621628,-0.15331041198366824,-0.15313776739166374,-0.15296511812547242,-0.15279246419036396,-0.1526198055916083,-0.1524471423344754,-0.15227447442423542,-0.15210180186615868,-0.15192912466551564,-0.15175644282757683,-0.15158375635761304,-0.1514110652608951,-0.151238369542694,-0.15106566920828093,-0.15089296426292717,-0.15072025471190414,-0.15054754056048342,-0.15037482181393672,-0.15020209847753588,-0.1500293705565529,-0.14985663805625996,-0.14968390098192924,-0.14951115933883322,-0.1493384131322444,-0.14916566236743556,-0.14899290704967943,-0.14882014718424902,-0.14864738277641745,-0.14847461383145794,-0.1483018403546439,-0.14812906235124884,-0.1479562798265464,-0.14778349278581043,-0.1476107012343148,-0.14743790517733366,-0.14726510462014117,-0.14709229956801168,-0.1469194900262197,-0.14674667600003985,-0.14657385749474688,-0.14640103451561567,-0.1462282070679213,-0.14605537515693892,-0.1458825387879438,-0.14570969796621144,-0.14553685269701738,-0.14536400298563737,-0.1451911488373472,-0.1450182902574229,-0.1448454272511406,-0.14467255982377653,-0.14449968798060708,-0.14432681172690878,-0.14415393106795832,-0.14398104600903244,-0.1438081565554081,-0.14363526271236235,-0.1434623644851724,-0.1432894618791156,-0.14311655489946937,-0.14294364355151132,-0.1427707278405192,-0.14259780777177086,-0.1424248833505443,-0.14225195458211765,-0.14207902147176918,-0.14190608402477728,-0.14173314224642045,-0.1415601961419774,-0.1413872457167269,-0.14121429097594784,-0.14104133192491933,-0.14086836856892054,-0.14069540091323077,-0.1405224289631295,-0.14034945272389626,-0.1401764722008108,-0.140003487399153,-0.13983049832420275,-0.13965750498124022,-0.1394845073755456,-0.13931150551239926,-0.1391384993970817,-0.13896548903487357,-0.1387924744310556,-0.13861945559090866,-0.1384464325197138,-0.13827340522275214,-0.13810037370530492,-0.13792733797265358,-0.13775429803007963,-0.13758125388286474,-0.13740820553629068,-0.13723515299563938,-0.13706209626619284,-0.13688903535323327,-0.13671597026204296,-0.13654290099790434,-0.13636982756609992,-0.13619674997191242,-0.13602366822062462,-0.13585058231751948,-0.13567749226788,-0.13550439807698947,-0.13533129975013108,-0.13515819729258838,-0.13498509070964484,-0.13481198000658423,-0.1346388651886903,-0.13446574626124702,-0.13429262322953847,-0.13411949609884882,-0.1339463648744624,-0.13377322956166365,-0.13360009016573715,-0.13342694669196756,-0.1332537991456397,-0.13308064753203855,-0.13290749185644912,-0.13273433212415667,-0.13256116834044643,-0.1323880005106039,-0.1322148286399146,-0.13204165273366422,-0.1318684727971386,-0.13169528883562362,-0.13152210085440535,-0.13134890885876999,-0.1311757128540038,-0.13100251284539324,-0.1308293088382248,-0.1306561008377852,-0.13048288884936118,-0.13030967287823966,-0.13013645292970769,-0.12996322900905238,-0.12979000112156105,-0.12961676927252108,-0.12944353346721993,-0.1292702937109453,-0.12909705000898494,-0.12892380236662668,-0.12875055078915856,-0.12857729528186868,-0.12840403585004526,-0.12823077249897666,-0.12805750523395137,-0.127884234060258,-0.12771095898318524,-0.12753768000802193,-0.12736439714005698,-0.12719111038457953,-0.12701781974687876,-0.12684452523224393,-0.1266712268459645,-0.12649792459332998,-0.12632461847963009,-0.12615130851015458,-0.12597799469019336,-0.1258046770250364,-0.1256313555199739,-0.12545803018029605,-0.12528470101129324,-0.12511136801825598,-0.12493803120647486,-0.12476469058124057,-0.12459134614784396,-0.12441799791157598,-0.12424464587772771,-0.1240712900515903,-0.12389793043845508,-0.12372456704361344,-0.12355119987235692,-0.12337782892997717,-0.12320445422176594,-0.12303107575301511,-0.12285769352901665,-0.1226843075550627,-0.12251091783644544,-0.12233752437845721,-0.12216412718639048,-0.1219907262655378,-0.12181732162119181,-0.12164391325864535,-0.1214705011831913,-0.12129708540012267,-0.12112366591473259,-0.12095024273231429,-0.12077681585816115,-0.12060338529756662,-0.12042995105582427,-0.1202565131382278,-0.12008307155007103,-0.11990962629664785,-0.11973617738325229,-0.11956272481517852,-0.11938926859772074,-0.11921580873617336,-0.11904234523583082,-0.11886887810198772,-0.11869540733993876,-0.11852193295497873,-0.11834845495240255,-0.11817497333750525,-0.11800148811558198,-0.11782799929192797,-0.11765450687183858,-0.11748101086060928,-0.11730751126353564,-0.11713400808591336,-0.11696050133303823,-0.11678699101020615,-0.11661347712271312,-0.1164399596758553,-0.11626643867492889,-0.11609291412523023,-0.11591938603205579,-0.1157458544007021,-0.11557231923646584,-0.11539878054464377,-0.11522523833053278,-0.11505169259942985,-0.11487814335663209,-0.11470459060743667,-0.11453103435714092,-0.11435747461104226,-0.1141839113744382,-0.11401034465262637,-0.11383677445090451,-0.11366320077457046,-0.11348962362892215,-0.11331604301925766,-0.11314245895087514,-0.11296887142907285,-0.11279528045914916,-0.11262168604640253,-0.11244808819613158,-0.11227448691363497,-0.11210088220421147,-0.11192727407316001,-0.11175366252577958,-0.11158004756736926,-0.11140642920322828,-0.11123280743865595,-0.11105918227895167,-0.11088555372941498,-0.11071192179534549,-0.11053828648204292,-0.1103646477948071,-0.11019100573893799,-0.11001736031973558,-0.10984371154250003,-0.10967005941253158,-0.10949640393513056,-0.10932274511559742,-0.10914908295923272,-0.10897541747133709,-0.10880174865721128,-0.10862807652215614,-0.10845440107147264,-0.10828072231046183,-0.10810704024442484,-0.10793335487866296,-0.10775966621847752,-0.10758597426916999,-0.10741227903604192,-0.10723858052439496,-0.10706487873953088,-0.10689117368675155,-0.1067174653713589,-0.106543753798655,-0.10637003897394201,-0.10619632090252216,-0.10602259958969784,-0.10584887504077149,-0.10567514726104565,-0.10550141625582299,-0.10532768203040625,-0.10515394459009827,-0.10498020394020201,-0.1048064600860205,-0.1046327130328569,-0.10445896278601442,-0.10428520935079642,-0.10411145273250634,-0.10393769293644768,-0.10376392996792409,-0.1035901638322393,-0.10341639453469713,-0.10324262208060148,-0.10306884647525637,-0.10289506772396592,-0.10272128583203434,-0.1025475008047659,-0.10237371264746506,-0.10219992136543625,-0.1020261269639841,-0.10185232944841327,-0.10167852882402856,-0.10150472509613483,-0.10133091827003704,-0.10115710835104028,-0.10098329534444969,-0.10080947925557052,-0.10063566008970813,-0.10046183785216795,-0.10028801254825552,-0.10011418418327646,-0.09994035276253649,-0.09976651829134144,-0.0995926807749972,-0.09941884021880977,-0.09924499662808525,-0.09907115000812984,-0.09889730036424979,-0.09872344770175148,-0.0985495920259414,-0.09837573334212606,-0.09820187165561213,-0.09802800697170634,-0.09785413929571554,-0.09768026863294663,-0.09750639498870663,-0.09733251836830263,-0.09715863877704184,-0.09698475622023153,-0.09681087070317909,-0.09663698223119198,-0.09646309080957775,-0.09628919644364406,-0.09611529913869864,-0.0959413989000493,-0.09576749573300396,-0.09559358964287064,-0.09541968063495741,-0.09524576871457248,-0.0950718538870241,-0.09489793615762064,-0.09472401553167054,-0.09455009201448235,-0.09437616561136468,-0.09420223632762625,-0.09402830416857587,-0.09385436913952241,-0.09368043124577487,-0.09350649049264229,-0.09333254688543384,-0.09315860042945874,-0.09298465113002634,-0.09281069899244603,-0.09263674402202732,-0.0924627862240798,-0.09228882560391313,-0.09211486216683706,-0.09194089591816147,-0.09176692686319625,-0.09159295500725143,-0.09141898035563711,-0.09124500291366348,-0.09107102268664082,-0.09089703967987946,-0.09072305389868986,-0.09054906534838254,-0.09037507403426812,-0.09020107996165727,-0.0900270831358608,-0.08985308356218956,-0.08967908124595449,-0.08950507619246661,-0.08933106840703706,-0.08915705789497703,-0.08898304466159779,-0.08880902871221072,-0.08863501005212725,-0.08846098868665891,-0.08828696462111732,-0.08811293786081419,-0.08793890841106125,-0.0877648762771704,-0.08759084146445358,-0.08741680397822278,-0.08724276382379013,-0.08706872100646781,-0.0868946755315681,-0.08672062740440332,-0.08654657663028592,-0.08637252321452839,-0.08619846716244334,-0.08602440847934342,-0.08585034717054141,-0.08567628324135011,-0.08550221669708247,-0.08532814754305143,-0.0851540757845701,-0.0849800014269516,-0.08480592447550919,-0.08463184493555616,-0.08445776281240591,-0.08428367811137188,-0.08410959083776764,-0.08393550099690682,-0.0837614085941031,-0.08358731363467027,-0.08341321612392218,-0.08323911606717278,-0.08306501346973608,-0.08289090833692615,-0.08271680067405719,-0.08254269048644343,-0.0823685777793992,-0.08219446255823888,-0.08202034482827697,-0.08184622459482802,-0.08167210186320664,-0.08149797663872757,-0.08132384892670556,-0.08114971873245548,-0.08097558606129227,-0.08080145091853091,-0.08062731330948654,-0.08045317323947426,-0.08027903071380935,-0.0801048857378071,-0.07993073831678288,-0.07975658845605219,-0.07958243616093051,-0.07940828143673351,-0.07923412428877682,-0.07905996472237622,-0.07888580274284754,-0.07871163835550668,-0.07853747156566962,-0.07836330237865241,-0.07818913079977116,-0.07801495683434209,-0.07784078048768146,-0.0776666017651056,-0.07749242067193095,-0.07731823721347397,-0.07714405139505125,-0.07696986322197938,-0.0767956726995751,-0.07662147983315518,-0.07644728462803645,-0.07627308708953583,-0.07609888722297031,-0.07592468503365697,-0.07575048052691292,-0.07557627370805538,-0.0754020645824016,-0.07522785315526893,-0.0750536394319748,-0.07487942341783667,-0.07470520511817211,-0.07453098453829872,-0.07435676168353422,-0.07418253655919636,-0.07400830917060297,-0.07383407952307194,-0.07365984762192127,-0.07348561347246896,-0.07331137708003314,-0.07313713844993198,-0.07296289758748374,-0.0727886544980067,-0.07261440918681926,-0.07244016165923985,-0.07226591192058701,-0.07209165997617929,-0.07191740583133538,-0.07174314949137396,-0.07156889096161384,-0.07139463024737386,-0.07122036735397293,-0.07104610228673004,-0.07087183505096425,-0.07069756565199467,-0.07052329409514048,-0.07034902038572093,-0.07017474452905532,-0.07000046653046305,-0.06982618639526356,-0.06965190412877635,-0.06947761973632101,-0.06930333322321718,-0.06912904459478454,-0.06895475385634289,-0.06878046101321204,-0.06860616607071192,-0.06843186903416246,-0.06825756990888371,-0.06808326870019572,-0.0679089654134187,-0.06773466005387282,-0.06756035262687839,-0.06738604313775573,-0.06721173159182527,-0.06703741799440746,-0.06686310235082284,-0.06668878466639198,-0.06651446494643559,-0.06634014319627433,-0.06616581942122902,-0.0659914936266205,-0.06581716581776965,-0.06564283599999746,-0.06546850417862493,-0.06529417035897317,-0.06511983454636332,-0.06494549674611659,-0.06477115696355426,-0.06459681520399764,-0.06442247147276814,-0.06424812577518721,-0.06407377811657634,-0.06389942850225713,-0.06372507693755121,-0.06355072342778023,-0.06337636797826599,-0.06320201059433027,-0.06302765128129495,-0.06285329004448195,-0.06267892688921325,-0.06250456182081092,-0.06233019484459703,-0.06215582596589376,-0.06198145519002332,-0.061807082522308,-0.06163270796807012,-0.06145833153263208,-0.06128395322131633,-0.06110957303944537,-0.06093519099234177,-0.060760807085328154,-0.060586421323727185,-0.060412033712861614,-0.060237644258054224,-0.06006325296462786,-0.05988885983790543,-0.05971446488320989,-0.059540068105864256,-0.0593656695111916,-0.05919126910451504,-0.05901686689115777,-0.05884246287644301,-0.058668057065694064,-0.05849364946423428,-0.05831924007738705,-0.05814482891047583,-0.057970415968824136,-0.05779600125775553,-0.057621584782593625,-0.057447166548662096,-0.05727274656128467,-0.05709832482578513,-0.056923901347487295,-0.056749476131715056,-0.05657504918379236,-0.05640062050904319,-0.056226190112791584,-0.056051758000361655,-0.05587732417707754,-0.05570288864826344,-0.05552845141924362,-0.055354012495342365,-0.055179571881884056,-0.05500512958419308,-0.05483068560759391,-0.05465623995741105,-0.05448179263896906,-0.054307343657592565,-0.05413289301860622,-0.05395844072733475,-0.05378398678910291,-0.053609531209235506,-0.05343507399305742,-0.05326061514589356,-0.053086154673068896,-0.05291169257990844,-0.05273722887173724,-0.05256276355388044,-0.05238829663166318,-0.05221382811041068,-0.05203935799544819,-0.05186488629210104,-0.05169041300569457,-0.05151593814155418,-0.051341461705005344,-0.051166983701373556,-0.05099250413598436,-0.050818023014163355,-0.050643540341236186,-0.050469056122528555,-0.05029457036336619,-0.050120083069074874,-0.049945594244980455,-0.049771103896408805,-0.049596612028685844,-0.04942211864713756,-0.04924762375708996,-0.04907312736386911,-0.048898629472801124,-0.04872413008921216,-0.04854962921842842,-0.04837512686577614,-0.04820062303658164,-0.04802611773617123,-0.047851610969871304,-0.04767710274300829,-0.04750259306090866,-0.04732808192889894,-0.04715356935230567,-0.046979055336455466,-0.04680453988667498,-0.0466300230082909,-0.046455504706629965,-0.04628098498701896,-0.04610646385478469,-0.045931941315254035,-0.045757417373753904,-0.04558289203561125,-0.04540836530615306,-0.04523383719070637,-0.045059307694598275,-0.04488477682315588,-0.04471024458170635,-0.0445357109755769,-0.04436117601009477,-0.04418663969058725,-0.04401210202238166,-0.043837563010805394,-0.04366302266118584,-0.04348848097885046,-0.043313937969126755,-0.04313939363734224,-0.04296484798882451,-0.04279030102890117,-0.04261575276289987,-0.04244120319614831,-0.04226665233397422,-0.04209210018170537,-0.0419175467446696,-0.041742992028194724,-0.04156843603760865,-0.041393878778239315,-0.04121932025541468,-0.04104476047446275,-0.04087019944071158,-0.04069563715948925,-0.040521073636123874,-0.04034650887594362,-0.04017194288427668,-0.039997375666451306,-0.03982280722779575,-0.03964823757363833,-0.039473666709307395,-0.03929909464013132,-0.03912452137143854,-0.038949946908557506,-0.03877537125681672,-0.03860079442154469,-0.03842621640807,-0.038251637221721244,-0.03807705686782707,-0.03790247535171615,-0.03772789267871718,-0.03755330885415892,-0.037378723883370144,-0.03720413777167966,-0.037029550524416324,-0.036854962146909025,-0.036680372644486675,-0.03650578202247823,-0.03633119028621267,-0.03615659744101902,-0.03598200349222634,-0.03580740844516372,-0.035632812305160265,-0.03545821507754515,-0.03528361676764755,-0.035109017380796706,-0.03493441692232185,-0.034759815397552275,-0.03458521281181731,-0.034410609170446305,-0.03423600447876864,-0.03406139874211374,-0.033886791965811035,-0.03371218415519002,-0.03353757531558021,-0.033362965452311134,-0.03318835457071238,-0.033013742676113546,-0.032839129773844275,-0.032664515869234224,-0.032489900967613096,-0.03231528507431062,-0.03214066819465655,-0.031966050333980686,-0.031791431497612835,-0.031616811690882846,-0.03144219091912061,-0.03126756918765601,-0.031092946501819006,-0.030918322866939553,-0.03074369828834765,-0.030569072771373315,-0.030394446321346604,-0.0302198189435976,-0.030045190643456406,-0.029870561426253165,-0.029695931297318037,-0.02952130026198122,-0.029346668325572926,-0.029172035493423412,-0.028997401770862952,-0.02882276716322185,-0.028648131675830427,-0.02847349531401905,-0.028298858083118092,-0.028124219988457974,-0.027949581035369125,-0.027774941229182008,-0.027600300575227114,-0.02742565907883495,-0.027251016745336063,-0.02707637358006102,-0.026901729588340407,-0.026727084775504843,-0.026552439146884967,-0.026377792707811445,-0.026203145463614973,-0.02602849741962626,-0.025853848581176047,-0.0256791989535951,-0.025504548542214206,-0.025329897352364177,-0.025155245389375847,-0.02498059265858008,-0.024805939165307756,-0.024631284914889782,-0.024456629912657086,-0.02428197416394062,-0.02410731767407136,-0.023932660448380303,-0.02375800249219847,-0.023583343810856902,-0.023408684409686666,-0.023234024294018843,-0.023059363469184548,-0.022884701940514906,-0.02271003971334107,-0.022535376792994215,-0.022360713184805533,-0.022186048894106237,-0.022011383926227562,-0.02183671828650077,-0.021662051980257134,-0.021487385012827948,-0.021312717389544537,-0.021138049115738234,-0.020963380196740395,-0.020788710637882398,-0.020614040444495642,-0.020439369621911542,-0.020264698175461532,-0.020090026110477062,-0.019915353432289614,-0.01974068014623067,-0.01956600625763175,-0.019391331771824373,-0.01921665669414009,-0.019041981029910473,-0.018867304784467093,-0.018692627963141556,-0.01851795057126548,-0.018343272614170503,-0.018168594097188275,-0.017993915025650467,-0.01781923540488876,-0.01764455524023487,-0.017469874537020504,-0.017295193300577407,-0.017120511536237327,-0.01694582924933204,-0.016771146445193324,-0.016596463129152982,-0.01642177930654283,-0.016247094982694704,-0.016072410162940445,-0.015897724852611917,-0.015723039057040998,-0.015548352781559582,-0.015373666031499575,-0.015198978812192895,-0.015024291128971481,-0.01484960298716728,-0.014674914392112258,-0.014500225349138392,-0.014325535863577673,-0.014150845940762104,-0.013976155586023706,-0.013801464804694508,-0.013626773602106554,-0.013452081983591902,-0.013277389954482624,-0.013102697520110798,-0.012928004685808523,-0.012753311456907904,-0.01257861783874106,-0.012403923836640119,-0.012229229455937228,-0.012054534701964539,-0.01187983958005422,-0.011705144095538442,-0.011530448253749399,-0.011355752060019287,-0.011181055519680313,-0.011006358638064703,-0.01083166142050468,-0.010656963872332493,-0.010482265998880386,-0.010307567805480623,-0.010132869297465473,-0.009958170480167217,-0.009783471358918145,-0.009608771939050556,-0.009434072225896756,-0.009259372224789062,-0.009084671941059802,-0.008909971380041308,-0.008735270547065924,-0.008560569447466,-0.008385868086573897,-0.00821116646972198,-0.008036464602242626,-0.007861762489468217,-0.007687060136731142,-0.007512357549363799,-0.0073376547326985935,-0.007162951692067936,-0.006988248432804245,-0.006813544960239946,-0.006638841279707472,-0.006464137396539258,-0.006289433316067751,-0.0061147290436253995,-0.0059400245845446595,-0.005765319944157994,-0.005590615127797869,-0.0054159101407967565,-0.005241204988487137,-0.005066499676201491,-0.0048917942092723075,-0.004717088593032079,-0.004542382832813301,-0.004367676933948477,-0.004192970901770111,-0.0040182647416107135,-0.0038435584588027982,-0.0036688520586788827,-0.0034941455465714883,-0.0033194389278131376,-0.0031447322077363606,-0.0029700253916736864,-0.0027953184849576493,-0.002620611492920786,-0.002445904420895635,-0.0022711972742147377,-0.0020964900582106385,-0.0019217827782158825,-0.0017470754395630184,-0.0015723680475845949,-0.0013976606076131642,-0.0012229531249812785,-0.0010482456050214916,-0.0008735380530663592,-0.000698830474448437,-0.0005241228745002822,-0.0003494152585544523,-0.00017470763194350547,0.0],"x":[-10.0,-9.98998998998999,-9.97997997997998,-9.96996996996997,-9.95995995995996,-9.94994994994995,-9.93993993993994,-9.92992992992993,-9.91991991991992,-9.90990990990991,-9.8998998998999,-9.88988988988989,-9.87987987987988,-9.86986986986987,-9.85985985985986,-9.84984984984985,-9.83983983983984,-9.82982982982983,-9.81981981981982,-9.80980980980981,-9.7997997997998,-9.78978978978979,-9.77977977977978,-9.76976976976977,-9.75975975975976,-9.74974974974975,-9.73973973973974,-9.72972972972973,-9.71971971971972,-9.70970970970971,-9.6996996996997,-9.68968968968969,-9.67967967967968,-9.66966966966967,-9.65965965965966,-9.64964964964965,-9.63963963963964,-9.62962962962963,-9.61961961961962,-9.60960960960961,-9.5995995995996,-9.58958958958959,-9.57957957957958,-9.56956956956957,-9.55955955955956,-9.54954954954955,-9.53953953953954,-9.52952952952953,-9.51951951951952,-9.50950950950951,-9.4994994994995,-9.48948948948949,-9.47947947947948,-9.46946946946947,-9.45945945945946,-9.44944944944945,-9.43943943943944,-9.42942942942943,-9.41941941941942,-9.40940940940941,-9.3993993993994,-9.38938938938939,-9.37937937937938,-9.36936936936937,-9.35935935935936,-9.34934934934935,-9.33933933933934,-9.32932932932933,-9.31931931931932,-9.30930930930931,-9.2992992992993,-9.28928928928929,-9.27927927927928,-9.26926926926927,-9.25925925925926,-9.24924924924925,-9.23923923923924,-9.22922922922923,-9.21921921921922,-9.20920920920921,-9.1991991991992,-9.18918918918919,-9.17917917917918,-9.16916916916917,-9.15915915915916,-9.14914914914915,-9.13913913913914,-9.12912912912913,-9.11911911911912,-9.10910910910911,-9.0990990990991,-9.08908908908909,-9.07907907907908,-9.06906906906907,-9.05905905905906,-9.04904904904905,-9.03903903903904,-9.02902902902903,-9.01901901901902,-9.00900900900901,-8.998998998999,-8.98898898898899,-8.97897897897898,-8.96896896896897,-8.95895895895896,-8.94894894894895,-8.93893893893894,-8.92892892892893,-8.91891891891892,-8.90890890890891,-8.8988988988989,-8.88888888888889,-8.87887887887888,-8.86886886886887,-8.85885885885886,-8.84884884884885,-8.83883883883884,-8.82882882882883,-8.81881881881882,-8.80880880880881,-8.7987987987988,-8.78878878878879,-8.77877877877878,-8.76876876876877,-8.75875875875876,-8.74874874874875,-8.73873873873874,-8.72872872872873,-8.71871871871872,-8.70870870870871,-8.6986986986987,-8.68868868868869,-8.67867867867868,-8.66866866866867,-8.65865865865866,-8.64864864864865,-8.63863863863864,-8.62862862862863,-8.618618618618619,-8.608608608608609,-8.598598598598599,-8.588588588588589,-8.578578578578579,-8.568568568568569,-8.558558558558559,-8.548548548548549,-8.538538538538539,-8.528528528528529,-8.518518518518519,-8.508508508508509,-8.498498498498499,-8.488488488488489,-8.478478478478479,-8.468468468468469,-8.458458458458459,-8.448448448448449,-8.438438438438439,-8.428428428428429,-8.418418418418419,-8.408408408408409,-8.398398398398399,-8.388388388388389,-8.378378378378379,-8.368368368368369,-8.358358358358359,-8.348348348348349,-8.338338338338339,-8.328328328328329,-8.318318318318319,-8.308308308308309,-8.298298298298299,-8.288288288288289,-8.278278278278279,-8.268268268268269,-8.258258258258259,-8.248248248248249,-8.238238238238239,-8.228228228228229,-8.218218218218219,-8.208208208208209,-8.198198198198199,-8.188188188188189,-8.178178178178179,-8.168168168168169,-8.158158158158159,-8.148148148148149,-8.138138138138139,-8.128128128128129,-8.118118118118119,-8.108108108108109,-8.098098098098099,-8.088088088088089,-8.078078078078079,-8.068068068068069,-8.058058058058059,-8.048048048048049,-8.038038038038039,-8.028028028028029,-8.018018018018019,-8.008008008008009,-7.997997997997998,-7.987987987987988,-7.977977977977978,-7.967967967967968,-7.957957957957958,-7.947947947947948,-7.937937937937938,-7.927927927927928,-7.917917917917918,-7.907907907907908,-7.897897897897898,-7.887887887887888,-7.877877877877878,-7.867867867867868,-7.857857857857858,-7.847847847847848,-7.837837837837838,-7.827827827827828,-7.817817817817818,-7.807807807807808,-7.797797797797798,-7.787787787787788,-7.777777777777778,-7.767767767767768,-7.757757757757758,-7.747747747747748,-7.737737737737738,-7.727727727727728,-7.717717717717718,-7.707707707707708,-7.697697697697698,-7.687687687687688,-7.677677677677678,-7.667667667667668,-7.657657657657658,-7.647647647647648,-7.637637637637638,-7.627627627627628,-7.617617617617618,-7.607607607607608,-7.597597597597598,-7.587587587587588,-7.5775775775775776,-7.5675675675675675,-7.5575575575575575,-7.5475475475475475,-7.5375375375375375,-7.5275275275275275,-7.5175175175175175,-7.5075075075075075,-7.4974974974974975,-7.4874874874874875,-7.4774774774774775,-7.4674674674674675,-7.4574574574574575,-7.4474474474474475,-7.4374374374374375,-7.4274274274274275,-7.4174174174174174,-7.407407407407407,-7.397397397397397,-7.387387387387387,-7.377377377377377,-7.367367367367367,-7.357357357357357,-7.347347347347347,-7.337337337337337,-7.327327327327327,-7.317317317317317,-7.307307307307307,-7.297297297297297,-7.287287287287287,-7.277277277277277,-7.267267267267267,-7.257257257257257,-7.247247247247247,-7.237237237237237,-7.227227227227227,-7.217217217217217,-7.207207207207207,-7.197197197197197,-7.187187187187187,-7.177177177177177,-7.167167167167167,-7.157157157157157,-7.147147147147147,-7.137137137137137,-7.127127127127127,-7.117117117117117,-7.107107107107107,-7.097097097097097,-7.087087087087087,-7.077077077077077,-7.067067067067067,-7.057057057057057,-7.047047047047047,-7.037037037037037,-7.027027027027027,-7.017017017017017,-7.007007007007007,-6.996996996996997,-6.986986986986987,-6.976976976976977,-6.966966966966967,-6.956956956956957,-6.946946946946947,-6.936936936936937,-6.926926926926927,-6.916916916916917,-6.906906906906907,-6.896896896896897,-6.886886886886887,-6.876876876876877,-6.866866866866867,-6.856856856856857,-6.846846846846847,-6.836836836836837,-6.826826826826827,-6.816816816816817,-6.806806806806807,-6.796796796796797,-6.786786786786787,-6.776776776776777,-6.766766766766767,-6.756756756756757,-6.746746746746747,-6.736736736736737,-6.726726726726727,-6.716716716716717,-6.706706706706707,-6.696696696696697,-6.686686686686687,-6.676676676676677,-6.666666666666667,-6.656656656656657,-6.646646646646647,-6.636636636636637,-6.626626626626627,-6.616616616616617,-6.606606606606607,-6.596596596596597,-6.586586586586587,-6.576576576576577,-6.566566566566567,-6.556556556556557,-6.546546546546547,-6.536536536536537,-6.526526526526527,-6.516516516516517,-6.506506506506507,-6.496496496496497,-6.486486486486487,-6.476476476476477,-6.466466466466467,-6.456456456456457,-6.446446446446447,-6.436436436436437,-6.426426426426427,-6.416416416416417,-6.406406406406407,-6.396396396396397,-6.386386386386387,-6.376376376376377,-6.366366366366367,-6.356356356356357,-6.346346346346347,-6.336336336336337,-6.326326326326327,-6.316316316316317,-6.306306306306307,-6.296296296296297,-6.286286286286287,-6.276276276276277,-6.266266266266267,-6.256256256256257,-6.246246246246246,-6.236236236236236,-6.226226226226226,-6.216216216216216,-6.206206206206206,-6.196196196196196,-6.186186186186186,-6.176176176176176,-6.166166166166166,-6.156156156156156,-6.146146146146146,-6.136136136136136,-6.126126126126126,-6.116116116116116,-6.106106106106106,-6.096096096096096,-6.086086086086086,-6.076076076076076,-6.066066066066066,-6.056056056056056,-6.046046046046046,-6.036036036036036,-6.026026026026026,-6.016016016016016,-6.006006006006006,-5.995995995995996,-5.985985985985986,-5.975975975975976,-5.965965965965966,-5.955955955955956,-5.945945945945946,-5.935935935935936,-5.925925925925926,-5.915915915915916,-5.905905905905906,-5.895895895895896,-5.885885885885886,-5.875875875875876,-5.865865865865866,-5.8558558558558556,-5.8458458458458455,-5.8358358358358355,-5.8258258258258255,-5.8158158158158155,-5.8058058058058055,-5.7957957957957955,-5.7857857857857855,-5.7757757757757755,-5.7657657657657655,-5.7557557557557555,-5.7457457457457455,-5.7357357357357355,-5.7257257257257255,-5.7157157157157155,-5.7057057057057055,-5.6956956956956954,-5.685685685685685,-5.675675675675675,-5.665665665665665,-5.655655655655655,-5.645645645645645,-5.635635635635635,-5.625625625625625,-5.615615615615615,-5.605605605605605,-5.595595595595595,-5.585585585585585,-5.575575575575575,-5.565565565565565,-5.555555555555555,-5.545545545545545,-5.535535535535535,-5.525525525525525,-5.515515515515515,-5.505505505505505,-5.495495495495495,-5.485485485485485,-5.475475475475475,-5.465465465465465,-5.455455455455455,-5.445445445445445,-5.435435435435435,-5.425425425425425,-5.415415415415415,-5.405405405405405,-5.395395395395395,-5.385385385385385,-5.375375375375375,-5.365365365365365,-5.355355355355355,-5.345345345345345,-5.335335335335335,-5.325325325325325,-5.315315315315315,-5.305305305305305,-5.295295295295295,-5.285285285285285,-5.275275275275275,-5.265265265265265,-5.255255255255255,-5.245245245245245,-5.235235235235235,-5.225225225225225,-5.215215215215215,-5.205205205205205,-5.195195195195195,-5.185185185185185,-5.175175175175175,-5.165165165165165,-5.155155155155155,-5.145145145145145,-5.135135135135135,-5.125125125125125,-5.115115115115115,-5.105105105105105,-5.095095095095095,-5.085085085085085,-5.075075075075075,-5.065065065065065,-5.055055055055055,-5.045045045045045,-5.035035035035035,-5.025025025025025,-5.015015015015015,-5.005005005005005,-4.994994994994995,-4.984984984984985,-4.974974974974975,-4.964964964964965,-4.954954954954955,-4.944944944944945,-4.934934934934935,-4.924924924924925,-4.914914914914915,-4.904904904904905,-4.894894894894895,-4.884884884884885,-4.874874874874875,-4.864864864864865,-4.854854854854855,-4.844844844844845,-4.834834834834835,-4.824824824824825,-4.814814814814815,-4.804804804804805,-4.794794794794795,-4.784784784784785,-4.774774774774775,-4.764764764764765,-4.754754754754755,-4.744744744744745,-4.734734734734735,-4.724724724724725,-4.714714714714715,-4.704704704704705,-4.694694694694695,-4.684684684684685,-4.674674674674675,-4.664664664664665,-4.654654654654655,-4.644644644644645,-4.634634634634635,-4.624624624624625,-4.614614614614615,-4.604604604604605,-4.594594594594595,-4.584584584584585,-4.574574574574575,-4.564564564564565,-4.554554554554555,-4.544544544544545,-4.534534534534535,-4.524524524524525,-4.514514514514515,-4.504504504504505,-4.494494494494495,-4.484484484484485,-4.474474474474475,-4.464464464464465,-4.454454454454455,-4.444444444444445,-4.434434434434435,-4.424424424424425,-4.414414414414415,-4.404404404404405,-4.394394394394395,-4.384384384384385,-4.374374374374375,-4.364364364364365,-4.354354354354355,-4.344344344344345,-4.334334334334335,-4.324324324324325,-4.314314314314315,-4.3043043043043046,-4.2942942942942945,-4.2842842842842845,-4.2742742742742745,-4.2642642642642645,-4.2542542542542545,-4.2442442442442445,-4.2342342342342345,-4.2242242242242245,-4.2142142142142145,-4.2042042042042045,-4.1941941941941945,-4.1841841841841845,-4.1741741741741745,-4.1641641641641645,-4.1541541541541545,-4.1441441441441444,-4.134134134134134,-4.124124124124124,-4.114114114114114,-4.104104104104104,-4.094094094094094,-4.084084084084084,-4.074074074074074,-4.064064064064064,-4.054054054054054,-4.044044044044044,-4.034034034034034,-4.024024024024024,-4.014014014014014,-4.004004004004004,-3.993993993993994,-3.983983983983984,-3.973973973973974,-3.963963963963964,-3.953953953953954,-3.943943943943944,-3.933933933933934,-3.923923923923924,-3.913913913913914,-3.903903903903904,-3.893893893893894,-3.883883883883884,-3.873873873873874,-3.863863863863864,-3.853853853853854,-3.843843843843844,-3.833833833833834,-3.823823823823824,-3.813813813813814,-3.803803803803804,-3.793793793793794,-3.7837837837837838,-3.7737737737737738,-3.7637637637637638,-3.7537537537537538,-3.7437437437437437,-3.7337337337337337,-3.7237237237237237,-3.7137137137137137,-3.7037037037037037,-3.6936936936936937,-3.6836836836836837,-3.6736736736736737,-3.6636636636636637,-3.6536536536536537,-3.6436436436436437,-3.6336336336336337,-3.6236236236236237,-3.6136136136136137,-3.6036036036036037,-3.5935935935935936,-3.5835835835835836,-3.5735735735735736,-3.5635635635635636,-3.5535535535535536,-3.5435435435435436,-3.5335335335335336,-3.5235235235235236,-3.5135135135135136,-3.5035035035035036,-3.4934934934934936,-3.4834834834834836,-3.4734734734734736,-3.4634634634634636,-3.4534534534534536,-3.4434434434434436,-3.4334334334334335,-3.4234234234234235,-3.4134134134134135,-3.4034034034034035,-3.3933933933933935,-3.3833833833833835,-3.3733733733733735,-3.3633633633633635,-3.3533533533533535,-3.3433433433433435,-3.3333333333333335,-3.3233233233233235,-3.3133133133133135,-3.3033033033033035,-3.2932932932932935,-3.2832832832832834,-3.2732732732732734,-3.2632632632632634,-3.2532532532532534,-3.2432432432432434,-3.2332332332332334,-3.2232232232232234,-3.2132132132132134,-3.2032032032032034,-3.1931931931931934,-3.1831831831831834,-3.1731731731731734,-3.1631631631631634,-3.1531531531531534,-3.1431431431431434,-3.1331331331331334,-3.123123123123123,-3.113113113113113,-3.103103103103103,-3.093093093093093,-3.083083083083083,-3.073073073073073,-3.063063063063063,-3.053053053053053,-3.043043043043043,-3.033033033033033,-3.023023023023023,-3.013013013013013,-3.003003003003003,-2.992992992992993,-2.982982982982983,-2.972972972972973,-2.962962962962963,-2.952952952952953,-2.942942942942943,-2.932932932932933,-2.9229229229229228,-2.9129129129129128,-2.9029029029029028,-2.8928928928928928,-2.8828828828828827,-2.8728728728728727,-2.8628628628628627,-2.8528528528528527,-2.8428428428428427,-2.8328328328328327,-2.8228228228228227,-2.8128128128128127,-2.8028028028028027,-2.7927927927927927,-2.7827827827827827,-2.7727727727727727,-2.7627627627627627,-2.7527527527527527,-2.7427427427427427,-2.7327327327327327,-2.7227227227227226,-2.7127127127127126,-2.7027027027027026,-2.6926926926926926,-2.6826826826826826,-2.6726726726726726,-2.6626626626626626,-2.6526526526526526,-2.6426426426426426,-2.6326326326326326,-2.6226226226226226,-2.6126126126126126,-2.6026026026026026,-2.5925925925925926,-2.5825825825825826,-2.5725725725725725,-2.5625625625625625,-2.5525525525525525,-2.5425425425425425,-2.5325325325325325,-2.5225225225225225,-2.5125125125125125,-2.5025025025025025,-2.4924924924924925,-2.4824824824824825,-2.4724724724724725,-2.4624624624624625,-2.4524524524524525,-2.4424424424424425,-2.4324324324324325,-2.4224224224224224,-2.4124124124124124,-2.4024024024024024,-2.3923923923923924,-2.3823823823823824,-2.3723723723723724,-2.3623623623623624,-2.3523523523523524,-2.3423423423423424,-2.3323323323323324,-2.3223223223223224,-2.3123123123123124,-2.3023023023023024,-2.2922922922922924,-2.2822822822822824,-2.2722722722722724,-2.2622622622622623,-2.2522522522522523,-2.2422422422422423,-2.2322322322322323,-2.2222222222222223,-2.2122122122122123,-2.2022022022022023,-2.1921921921921923,-2.1821821821821823,-2.1721721721721723,-2.1621621621621623,-2.1521521521521523,-2.1421421421421423,-2.1321321321321323,-2.1221221221221223,-2.1121121121121122,-2.1021021021021022,-2.0920920920920922,-2.0820820820820822,-2.0720720720720722,-2.062062062062062,-2.052052052052052,-2.042042042042042,-2.032032032032032,-2.022022022022022,-2.012012012012012,-2.002002002002002,-1.991991991991992,-1.981981981981982,-1.971971971971972,-1.961961961961962,-1.951951951951952,-1.941941941941942,-1.931931931931932,-1.921921921921922,-1.911911911911912,-1.901901901901902,-1.8918918918918919,-1.8818818818818819,-1.8718718718718719,-1.8618618618618619,-1.8518518518518519,-1.8418418418418419,-1.8318318318318318,-1.8218218218218218,-1.8118118118118118,-1.8018018018018018,-1.7917917917917918,-1.7817817817817818,-1.7717717717717718,-1.7617617617617618,-1.7517517517517518,-1.7417417417417418,-1.7317317317317318,-1.7217217217217218,-1.7117117117117118,-1.7017017017017018,-1.6916916916916918,-1.6816816816816818,-1.6716716716716717,-1.6616616616616617,-1.6516516516516517,-1.6416416416416417,-1.6316316316316317,-1.6216216216216217,-1.6116116116116117,-1.6016016016016017,-1.5915915915915917,-1.5815815815815817,-1.5715715715715717,-1.5615615615615615,-1.5515515515515514,-1.5415415415415414,-1.5315315315315314,-1.5215215215215214,-1.5115115115115114,-1.5015015015015014,-1.4914914914914914,-1.4814814814814814,-1.4714714714714714,-1.4614614614614614,-1.4514514514514514,-1.4414414414414414,-1.4314314314314314,-1.4214214214214214,-1.4114114114114114,-1.4014014014014013,-1.3913913913913913,-1.3813813813813813,-1.3713713713713713,-1.3613613613613613,-1.3513513513513513,-1.3413413413413413,-1.3313313313313313,-1.3213213213213213,-1.3113113113113113,-1.3013013013013013,-1.2912912912912913,-1.2812812812812813,-1.2712712712712713,-1.2612612612612613,-1.2512512512512513,-1.2412412412412412,-1.2312312312312312,-1.2212212212212212,-1.2112112112112112,-1.2012012012012012,-1.1911911911911912,-1.1811811811811812,-1.1711711711711712,-1.1611611611611612,-1.1511511511511512,-1.1411411411411412,-1.1311311311311312,-1.1211211211211212,-1.1111111111111112,-1.1011011011011012,-1.0910910910910911,-1.0810810810810811,-1.0710710710710711,-1.0610610610610611,-1.0510510510510511,-1.0410410410410411,-1.031031031031031,-1.021021021021021,-1.011011011011011,-1.001001001001001,-0.990990990990991,-0.980980980980981,-0.970970970970971,-0.960960960960961,-0.950950950950951,-0.9409409409409409,-0.9309309309309309,-0.9209209209209209,-0.9109109109109109,-0.9009009009009009,-0.8908908908908909,-0.8808808808808809,-0.8708708708708709,-0.8608608608608609,-0.8508508508508509,-0.8408408408408409,-0.8308308308308309,-0.8208208208208209,-0.8108108108108109,-0.8008008008008008,-0.7907907907907908,-0.7807807807807807,-0.7707707707707707,-0.7607607607607607,-0.7507507507507507,-0.7407407407407407,-0.7307307307307307,-0.7207207207207207,-0.7107107107107107,-0.7007007007007007,-0.6906906906906907,-0.6806806806806807,-0.6706706706706707,-0.6606606606606606,-0.6506506506506506,-0.6406406406406406,-0.6306306306306306,-0.6206206206206206,-0.6106106106106106,-0.6006006006006006,-0.5905905905905906,-0.5805805805805806,-0.5705705705705706,-0.5605605605605606,-0.5505505505505506,-0.5405405405405406,-0.5305305305305306,-0.5205205205205206,-0.5105105105105106,-0.5005005005005005,-0.4904904904904905,-0.4804804804804805,-0.47047047047047047,-0.46046046046046046,-0.45045045045045046,-0.44044044044044045,-0.43043043043043044,-0.42042042042042044,-0.41041041041041043,-0.4004004004004004,-0.39039039039039036,-0.38038038038038036,-0.37037037037037035,-0.36036036036036034,-0.35035035035035034,-0.34034034034034033,-0.3303303303303303,-0.3203203203203203,-0.3103103103103103,-0.3003003003003003,-0.2902902902902903,-0.2802802802802803,-0.2702702702702703,-0.2602602602602603,-0.2502502502502503,-0.24024024024024024,-0.23023023023023023,-0.22022022022022023,-0.21021021021021022,-0.2002002002002002,-0.19019019019019018,-0.18018018018018017,-0.17017017017017017,-0.16016016016016016,-0.15015015015015015,-0.14014014014014015,-0.13013013013013014,-0.12012012012012012,-0.11011011011011011,-0.1001001001001001,-0.09009009009009009,-0.08008008008008008,-0.07007007007007007,-0.06006006006006006,-0.05005005005005005,-0.04004004004004004,-0.03003003003003003,-0.02002002002002002,-0.01001001001001001,0.0]} +{"expected":[-0.0,0.006289433316067501,0.01257861783874155,0.018867304784467333,0.02515524538937584,0.031442190919120344,0.037727892678717664,0.0440121020223819,0.050294570363366174,0.05657504918379209,0.06285329004448242,0.06912904459478476,0.07540206458240156,0.08167210186320636,0.08793890841106172,0.09420223632762646,0.10046183785216792,0.10671746537135862,0.11296887142907329,0.11921580873617356,0.125458030180296,0.13169528883562331,0.13792733797265402,0.14415393106795849,0.15037482181393666,0.15658976412855738,0.16279851216509478,0.16900082032184927,0.17519644325186892,0.18138513587265076,0.18756665337583756,0.19374075123689782,0.19990718522480452,0.20606571141169225,0.2122160861825083,0.2183580662446456,0.22449140863757253,0.23061587074243986,0.23673121029168015,0.2428371853785873,0.24893355446689155,0.2550200764003101,0.26109651041208864,0.26716261613452147,0.2732181536084658,0.2792628832928297,0.2852965660740502,0.29131896327554735,0.2973298366671722,0.3033289484746263,0.3093160613888693,0.3152909385755026,0.3212533436841436,0.3272030408577713,0.3331397947420579,0.33906337049467533,0.3449735337945904,0.35087005085133016,0.3567526884142321,0.362621213781667,0.36847539481024977,0.3743149999240185,0.38013979812359705,0.38594955899532885,0.3917440527203972,0.3975230500839126,0.40328632248398155,0.409033641940746,0.4147647811054069,0.42047951326921396,0.4261776123724356,0.43185885301329746,0.43752301045690417,0.4431698606441257,0.4487991802004625,0.4544107464448775,0.46000433739861085,0.46557973179395673,0.47113670908301813,0.4766750494464275,0.4821945338020476,0.48769494381363415,0.49317606189947466,0.49863767124099156,0.5040795557913245,0.5095015002838728,0.5149032902408129,0.520284711981579,0.5256455526313205,0.53098560012932,0.5363046432373827,0.5416024715481901,0.5468788754936272,0.5521336463530698,0.5573665762616424,0.5625774582184371,0.5677660860947077,0.5729322546420196,0.5780757595003709,0.5831963972062734,0.5882939652008049,0.5933682618376199,0.5984190863909271,0.6034462390634262,0.6084495209942169,0.6134287342666614,0.6183836819162155,0.6233141679382167,0.6282199972956422,0.6331009759268209,0.6379569107531121,0.6427876096865394,0.6475928816373938,0.6523725365217914,0.6571263852691888,0.661854239829868,0.6665559131823718,0.6712312193409031,0.6758799733626792,0.6805019913552524,0.6850970904837806,0.6896650889782623,0.6942058061407227,0.6987190623523674,0.7032046790806837,0.7076624788865048,0.7120922854310257,0.7164939234827832,0.7208672189245848,0.7252119987603977,0.7295280911221885,0.7338153252767277,0.7380735316323388,0.7423025417456096,0.7465021883280522,0.7506723052527243,0.7548127275607986,0.7589232914680892,0.7630038343715274,0.7670541948555987,0.7710742126987246,0.7750637288796018,0.7790225855834912,0.782950626208463,0.7868476953715898,0.790713638915094,0.7945483039124438,0.7983515386744059,0.8021231927550436,0.8058631169576693,0.8095711633407441,0.813247185223733,0.8168910371929051,0.8205025751070877,0.8240816561033645,0.8276281386027311,0.8311418823156934,0.8346227482478176,0.8380705987052266,0.8414852973000501,0.8448667089558176,0.8482146999128025,0.8515291377333114,0.854809891306926,0.8580568308556873,0.861269827939231,0.864448755459865,0.8675934876676012,0.8707039001651273,0.8737798699127287,0.8768212752331536,0.8798279958164293,0.8827999127246194,0.8857369083965295,0.8886388666523559,0.8915056726982838,0.8943372131310271,0.8971333759423142,0.8998940505233183,0.902619127669034,0.9053084995825965,0.9079620598795464,0.9105797035920357,0.9131613271729833,0.9157068285001689,0.9182161068802741,0.9206890630528631,0.9231255991943123,0.9255256189216778,0.9278890272965095,0.9302157308286043,0.9325056374797074,0.9347586566671509,0.9369746992674381,0.9391536776197678,0.9412955055295031,0.9434000982715811,0.9454673725938635,0.9474972467204298,0.9494896403548133,0.9514444746831765,0.9533616723774294,0.9552411575982869,0.9570828559982708,0.9588866947246496,0.9606526024223211,0.9623805092366335,0.9640703468161506,0.9657220483153545,0.9673355483972903,0.9689107832361495,0.970447690519797,0.9719462094522335,0.9734062807560028,0.9748278466745343,0.9762108509744295,0.9775552389476861,0.9788609574138616,0.9801279547221766,0.9813561807535595,0.9825455869226276,0.9836961261796102,0.984807753012208,0.9858804234473958,0.9869140950531601,0.9879087269401781,0.9888642797634357,0.9897807157237835,0.9906579985694318,0.9914960935973848,0.9922949676548137,0.9930545891403677,0.9937749280054242,0.9944559557552776,0.995097645450266,0.9956999717068377,0.9962629106985544,0.9967864401570343,0.9972705393728327,0.9977151891962615,0.9981203720381463,0.9984860718705225,0.9988122742272691,0.9990989662046814,0.9993461364619809,0.9995537752217639,0.9997218742703887,0.9998504269583004,0.9999394282002937,0.999988874475714,0.9999987638285974,0.9999690958677468,0.9998998717667489,0.9997910942639262,0.9996427676622299,0.9994548978290693,0.9992274921960794,0.9989605597588274,0.9986541110764564,0.9983081582712682,0.9979227150282433,0.9974977965944997,0.9970334197786902,0.9965296029503368,0.9959863660391043,0.9954037305340125,0.9947817194825853,0.9941203574899393,0.9934196707178107,0.9926796868835203,0.991900435258877,0.9910819466690197,0.9902242534911985,0.9893273896534935,0.9883913906334728,0.9874162934567889,0.9864021366957145,0.9853489604676164,0.9842568064333687,0.9831257177957043,0.9819557392975066,0.9807469172200396,0.9794992993811165,0.9782129351332085,0.9768878753614925,0.9755241724818386,0.9741218804387363,0.9726810547031601,0.9712017522703762,0.9696840316576876,0.9681279529021188,0.9665335775580414,0.9649009686947391,0.9632301908939126,0.9615213102471255,0.959774394353189,0.9579895123154889,0.956166734739251,0.9543061337287488,0.9524077828844514,0.9504717573001116,0.9484981335597952,0.9464869897348525,0.9444384053808289,0.9423524615343187,0.9402292407097589,0.9380688268961659,0.935871305553812,0.9336367636108462,0.9313652894598542,0.9290569729543628,0.926711905405285,0.9243301795773085,0.9219118896852251,0.9194571313902055,0.9169660017960134,0.9144385994451658,0.9118750243150338,0.9092753778138886,0.9066397627768893,0.9039682834620162,0.9012610455459447,0.8985181561198674,0.8957397236852553,0.8929258581495686,0.8900766708219059,0.8871922744086042,0.8842727830087778,0.8813183121098072,0.8783289785827687,0.8753049006778131,0.8722461980194863,0.869152991601999,0.8660254037844386,0.862863558285931,0.8596675801807452,0.8564375958933458,0.8531737331933928,0.8498761211906863,0.8465448903300605,0.8431801723862222,0.8397821004585397,0.836350808965776,0.8328864336407735,0.8293891115250825,0.8258589809635432,0.8222961815988092,0.8187008543658281,0.8150731414862621,0.8114131864628658,0.8077211340738066,0.8039971303669405,0.8002413226540319,0.7964538595049291,0.7926348907416847,0.7887845674326315,0.7849030418864044,0.7809904676459175,0.7770469994822884,0.7730727933887177,0.7690680065743166,0.76503279745789,0.7609673256616675,0.7568717520049918,0.7527462384979546,0.7485909483349906,0.7444060458884189,0.7401916967019436,0.7359480674841032,0.7316753261016784,0.7273736415730485,0.7230431840615094,0.7186841248685382,0.714296636427021,0.7098808922944284,0.7054370671459532,0.7009653367675973,0.6964658780492218,0.6919388689775461,0.6873844886291104,0.682802917163189,0.6781943358146665,0.6735589268868658,0.6688968737443396,0.664208360805614,0.659493573535896,0.6547526984397349,0.6499859230536468,0.6451934359386933,0.640375426673026,0.635532085844384,0.6306636050425573,0.6257701768518058,0.6208519948432437,0.6159092535671795,0.6109421485454231,0.605950876263548,0.600935634163123,0.5958966206338976,0.5908340350059581,0.5857480775418393,0.5806389494286057,0.5755068527698899,0.5703519905779015,0.5651745667653927,0.5599747861375955,0.554752854384117,0.5495089780708061,0.544243364631579,0.5389562223602166,0.5336477604021223,0.5283181887460516,0.5229677182158023,0.5175965604618785,0.5122049279531142,0.5067930339682727,0.5013610925876059,0.49590931868438964,0.4904379279164205,0.4849471367174879,0.4794371622888097,0.47390822259044335,0.4683605363326605,0.46279432296729917,0.45720980267907907,0.4516071963768952,0.44598672568507597,0.4403486129346195,0.4346930811543956,0.42902035406232664,0.4233306560565344,0.41762421220646717,0.41190124824399266,0.4061619905544726,0.40040666616780385,0.39463550274944104,0.38884872859138747,0.3830465726031679,0.3772292643027699,0.37139703380756833,0.365550111825219,0.35968872964453596,0.35381311912633867,0.3479235126942841,0.3420201433256687,0.33610324454221585,0.3301730504008368,0.3242297954843707,0.31827371489230855,0.31230504423148925,0.30632401960678346,0.30033087761175026,0.2943258553192818,0.2883091902722216,0.2822811204739717,0.27624188437907415,0.2701917208837821,0.26413086931660607,0.2580595694288502,0.25197806138512496,0.2458865857538503,0.23978538349773576,0.23367469596425247,0.22755476487608217,0.22142583232155919,0.21528814074509012,0.20914193293756742,0.20298745202676113,0.19682494146770546,0.19065464503306437,0.1844768068034924,0.17829167115797576,0.1720994827641691,0.16590048656871317,0.15969492778754948,0.15348305189621608,0.14726510462014122,0.14104133192491916,0.13481198000658431,0.1285772952818685,0.1223375243784573,0.11609291412523007,0.1098437115425001,0.10359016383223915,0.09733251836830271,0.09107102268664066,0.08480592447550929,0.07853747156566947,0.0722659119205871,0.06599149362662035,0.05971446488320999,0.05343507399305728,0.047153569352305774,0.04087019944071144,0.03458521281181742,0.028298858083117957,0.02201138392622768,0.01572303905704087,0.009434072225896876,0.0031447322077362352,-0.0031447322077362352,-0.009434072225896876,-0.01572303905704087,-0.02201138392622768,-0.028298858083117957,-0.03458521281181742,-0.04087019944071144,-0.047153569352305774,-0.05343507399305728,-0.05971446488320999,-0.06599149362662035,-0.0722659119205871,-0.07853747156566947,-0.08480592447550929,-0.09107102268664066,-0.09733251836830271,-0.10359016383223915,-0.1098437115425001,-0.11609291412523007,-0.1223375243784573,-0.1285772952818685,-0.13481198000658431,-0.14104133192491916,-0.14726510462014122,-0.15348305189621608,-0.15969492778754948,-0.16590048656871317,-0.1720994827641691,-0.17829167115797576,-0.1844768068034924,-0.19065464503306437,-0.19682494146770546,-0.20298745202676113,-0.20914193293756742,-0.21528814074509012,-0.22142583232155919,-0.22755476487608217,-0.23367469596425247,-0.23978538349773576,-0.2458865857538503,-0.25197806138512496,-0.2580595694288502,-0.26413086931660607,-0.2701917208837821,-0.27624188437907415,-0.2822811204739717,-0.2883091902722216,-0.2943258553192818,-0.30033087761175026,-0.30632401960678346,-0.31230504423148925,-0.31827371489230855,-0.3242297954843707,-0.3301730504008368,-0.33610324454221585,-0.3420201433256687,-0.3479235126942841,-0.35381311912633867,-0.35968872964453596,-0.365550111825219,-0.37139703380756833,-0.3772292643027699,-0.3830465726031679,-0.38884872859138747,-0.39463550274944104,-0.40040666616780385,-0.4061619905544726,-0.41190124824399266,-0.41762421220646717,-0.4233306560565344,-0.42902035406232664,-0.4346930811543956,-0.4403486129346195,-0.44598672568507597,-0.4516071963768952,-0.45720980267907907,-0.46279432296729917,-0.4683605363326605,-0.47390822259044335,-0.4794371622888097,-0.4849471367174879,-0.4904379279164205,-0.49590931868438964,-0.5013610925876059,-0.5067930339682727,-0.5122049279531142,-0.5175965604618785,-0.5229677182158023,-0.5283181887460516,-0.5336477604021223,-0.5389562223602166,-0.544243364631579,-0.5495089780708061,-0.554752854384117,-0.5599747861375955,-0.5651745667653927,-0.5703519905779015,-0.5755068527698899,-0.5806389494286057,-0.5857480775418393,-0.5908340350059581,-0.5958966206338976,-0.600935634163123,-0.605950876263548,-0.6109421485454231,-0.6159092535671795,-0.6208519948432437,-0.6257701768518058,-0.6306636050425573,-0.635532085844384,-0.640375426673026,-0.6451934359386933,-0.6499859230536468,-0.6547526984397349,-0.659493573535896,-0.664208360805614,-0.6688968737443396,-0.6735589268868658,-0.6781943358146665,-0.682802917163189,-0.6873844886291104,-0.6919388689775461,-0.6964658780492218,-0.7009653367675973,-0.7054370671459532,-0.7098808922944284,-0.714296636427021,-0.7186841248685382,-0.7230431840615094,-0.7273736415730485,-0.7316753261016784,-0.7359480674841032,-0.7401916967019436,-0.7444060458884189,-0.7485909483349906,-0.7527462384979546,-0.7568717520049918,-0.7609673256616675,-0.76503279745789,-0.7690680065743166,-0.7730727933887177,-0.7770469994822884,-0.7809904676459175,-0.7849030418864044,-0.7887845674326315,-0.7926348907416848,-0.7964538595049291,-0.8002413226540321,-0.8039971303669405,-0.8077211340738069,-0.8114131864628658,-0.8150731414862622,-0.8187008543658281,-0.8222961815988095,-0.8258589809635432,-0.8293891115250828,-0.8328864336407735,-0.8363508089657762,-0.8397821004585397,-0.8431801723862224,-0.8465448903300605,-0.8498761211906865,-0.8531737331933928,-0.8564375958933459,-0.8596675801807452,-0.8628635582859311,-0.8660254037844386,-0.8691529916019989,-0.8722461980194863,-0.875304900677813,-0.8783289785827687,-0.881318312109807,-0.8842727830087778,-0.887192274408604,-0.8900766708219059,-0.8929258581495685,-0.8957397236852553,-0.8985181561198673,-0.9012610455459447,-0.9039682834620161,-0.9066397627768893,-0.9092753778138885,-0.9118750243150338,-0.9144385994451657,-0.9169660017960134,-0.9194571313902055,-0.9219118896852251,-0.9243301795773083,-0.926711905405285,-0.9290569729543627,-0.9313652894598542,-0.9336367636108461,-0.935871305553812,-0.9380688268961658,-0.9402292407097589,-0.9423524615343186,-0.9444384053808289,-0.9464869897348525,-0.9484981335597952,-0.9504717573001115,-0.9524077828844514,-0.9543061337287488,-0.956166734739251,-0.9579895123154889,-0.959774394353189,-0.9615213102471255,-0.9632301908939126,-0.964900968694739,-0.9665335775580414,-0.9681279529021187,-0.9696840316576876,-0.9712017522703762,-0.97268105470316,-0.9741218804387363,-0.9755241724818386,-0.9768878753614925,-0.9782129351332084,-0.9794992993811165,-0.9807469172200396,-0.9819557392975067,-0.9831257177957042,-0.9842568064333687,-0.9853489604676166,-0.9864021366957146,-0.9874162934567889,-0.9883913906334728,-0.9893273896534935,-0.9902242534911986,-0.9910819466690196,-0.991900435258877,-0.9926796868835203,-0.9934196707178107,-0.9941203574899393,-0.9947817194825853,-0.9954037305340125,-0.9959863660391044,-0.9965296029503368,-0.9970334197786902,-0.9974977965944997,-0.9979227150282433,-0.9983081582712682,-0.9986541110764564,-0.9989605597588275,-0.9992274921960794,-0.9994548978290693,-0.9996427676622299,-0.9997910942639262,-0.9998998717667489,-0.9999690958677468,-0.9999987638285974,-0.999988874475714,-0.9999394282002937,-0.9998504269583004,-0.9997218742703887,-0.9995537752217638,-0.9993461364619809,-0.9990989662046814,-0.9988122742272691,-0.9984860718705224,-0.9981203720381463,-0.9977151891962615,-0.9972705393728327,-0.9967864401570343,-0.9962629106985544,-0.9956999717068377,-0.995097645450266,-0.9944559557552776,-0.9937749280054242,-0.9930545891403677,-0.9922949676548137,-0.9914960935973848,-0.9906579985694317,-0.9897807157237835,-0.9888642797634357,-0.9879087269401781,-0.98691409505316,-0.9858804234473958,-0.984807753012208,-0.9836961261796101,-0.9825455869226277,-0.9813561807535595,-0.9801279547221766,-0.9788609574138615,-0.9775552389476861,-0.9762108509744296,-0.9748278466745343,-0.9734062807560027,-0.9719462094522336,-0.970447690519797,-0.9689107832361495,-0.9673355483972902,-0.9657220483153547,-0.9640703468161507,-0.9623805092366335,-0.9606526024223211,-0.9588866947246498,-0.9570828559982708,-0.9552411575982869,-0.9533616723774293,-0.9514444746831767,-0.9494896403548134,-0.9474972467204298,-0.9454673725938635,-0.9434000982715812,-0.9412955055295033,-0.9391536776197678,-0.936974699267438,-0.9347586566671511,-0.9325056374797075,-0.9302157308286043,-0.9278890272965093,-0.925525618921678,-0.9231255991943124,-0.9206890630528631,-0.918216106880274,-0.9157068285001692,-0.9131613271729834,-0.9105797035920357,-0.9079620598795463,-0.9053084995825967,-0.9026191276690341,-0.8998940505233183,-0.8971333759423141,-0.8943372131310272,-0.8915056726982838,-0.8886388666523558,-0.8857369083965294,-0.8827999127246197,-0.8798279958164293,-0.8768212752331536,-0.8737798699127285,-0.8707039001651276,-0.8675934876676012,-0.864448755459865,-0.8612698279392308,-0.8580568308556875,-0.854809891306926,-0.8515291377333113,-0.8482146999128023,-0.8448667089558178,-0.8414852973000502,-0.8380705987052265,-0.8346227482478173,-0.8311418823156936,-0.8276281386027312,-0.8240816561033644,-0.8205025751070875,-0.8168910371929055,-0.813247185223733,-0.809571163340744,-0.8058631169576691,-0.8021231927550438,-0.7983515386744059,-0.7945483039124437,-0.7907136389150937,-0.78684769537159,-0.7829506262084631,-0.7790225855834912,-0.7750637288796016,-0.7710742126987248,-0.7670541948555988,-0.7630038343715273,-0.7589232914680889,-0.7548127275607989,-0.7506723052527243,-0.7465021883280519,-0.7423025417456093,-0.7380735316323389,-0.7338153252767277,-0.7295280911221884,-0.7252119987603973,-0.720867218924585,-0.7164939234827832,-0.7120922854310254,-0.7076624788865044,-0.7032046790806838,-0.6987190623523674,-0.6942058061407226,-0.6896650889782618,-0.6850970904837809,-0.6805019913552524,-0.6758799733626791,-0.6712312193409028,-0.666555913182372,-0.661854239829868,-0.6571263852691885,-0.652372536521791,-0.647592881637394,-0.6427876096865394,-0.6379569107531119,-0.6331009759268214,-0.6282199972956424,-0.6233141679382167,-0.6183836819162154,-0.6134287342666618,-0.6084495209942171,-0.6034462390634262,-0.5984190863909269,-0.5933682618376204,-0.5882939652008051,-0.5831963972062734,-0.5780757595003707,-0.5729322546420199,-0.5677660860947079,-0.5625774582184371,-0.5573665762616422,-0.5521336463530703,-0.5468788754936275,-0.5416024715481901,-0.5363046432373825,-0.5309856001293204,-0.5256455526313207,-0.520284711981579,-0.5149032902408127,-0.5095015002838732,-0.5040795557913247,-0.4986376712409915,-0.4931760618994744,-0.48769494381363454,-0.48219453380204774,-0.47667504944642747,-0.47113670908301786,-0.4655797317939571,-0.460004337398611,-0.45441074644487744,-0.44879918020046217,-0.4431698606441261,-0.43752301045690434,-0.4318588530132974,-0.42617761237243534,-0.4204795132692143,-0.414764781105407,-0.4090336419407459,-0.4032863224839812,-0.3975230500839129,-0.3917440527203973,-0.38594955899532873,-0.3801397981235967,-0.3743149999240189,-0.3684753948102499,-0.3626212137816669,-0.35675268841423174,-0.3508700508513305,-0.3449735337945905,-0.3390633704946752,-0.33313979474205757,-0.32720304085777163,-0.3212533436841437,-0.31529093857550244,-0.3093160613888689,-0.30332894847462666,-0.29732983666717233,-0.29131896327554724,-0.2852965660740498,-0.2792628832928301,-0.27321815360846585,-0.2671626161345213,-0.26109651041208826,-0.25502007640031044,-0.24893355446689164,-0.24283718537858717,-0.23673121029167976,-0.2306158707424402,-0.2244914086375726,-0.21835806624464546,-0.2122160861825079,-0.20606571141169255,-0.19990718522480458,-0.19374075123689763,-0.18756665337583714,-0.18138513587265107,-0.17519644325186898,-0.16900082032184907,-0.16279851216509433,-0.15658976412855768,-0.15037482181393672,-0.14415393106795832,-0.13792733797265358,-0.13169528883562362,-0.12545803018029605,-0.11921580873617336,-0.11296887142907285,-0.1067174653713589,-0.10046183785216795,-0.09420223632762625,-0.08793890841106125,-0.08167210186320664,-0.0754020645824016,-0.06912904459478454,-0.06285329004448195,-0.05657504918379236,-0.05029457036336619,-0.04401210202238166,-0.03772789267871718,-0.03144219091912061,-0.025155245389375847,-0.018867304784467093,-0.01257861783874106,-0.006289433316067751,0.0],"x":[-360.0,-359.63963963963965,-359.27927927927925,-358.9189189189189,-358.55855855855856,-358.1981981981982,-357.8378378378378,-357.47747747747746,-357.1171171171171,-356.7567567567568,-356.39639639639637,-356.036036036036,-355.6756756756757,-355.31531531531533,-354.9549549549549,-354.5945945945946,-354.23423423423424,-353.8738738738739,-353.5135135135135,-353.15315315315314,-352.7927927927928,-352.43243243243245,-352.07207207207205,-351.7117117117117,-351.35135135135135,-350.990990990991,-350.6306306306306,-350.27027027027026,-349.9099099099099,-349.54954954954957,-349.18918918918916,-348.8288288288288,-348.4684684684685,-348.1081081081081,-347.7477477477477,-347.3873873873874,-347.02702702702703,-346.6666666666667,-346.3063063063063,-345.94594594594594,-345.5855855855856,-345.22522522522524,-344.86486486486484,-344.5045045045045,-344.14414414414415,-343.7837837837838,-343.4234234234234,-343.06306306306305,-342.7027027027027,-342.34234234234236,-341.98198198198196,-341.6216216216216,-341.26126126126127,-340.9009009009009,-340.5405405405405,-340.1801801801802,-339.8198198198198,-339.4594594594595,-339.0990990990991,-338.73873873873873,-338.3783783783784,-338.01801801801804,-337.65765765765764,-337.2972972972973,-336.93693693693695,-336.5765765765766,-336.2162162162162,-335.85585585585585,-335.4954954954955,-335.13513513513516,-334.77477477477476,-334.4144144144144,-334.05405405405406,-333.6936936936937,-333.3333333333333,-332.97297297297297,-332.6126126126126,-332.2522522522523,-331.8918918918919,-331.5315315315315,-331.1711711711712,-330.81081081081084,-330.45045045045043,-330.0900900900901,-329.72972972972974,-329.3693693693694,-329.009009009009,-328.64864864864865,-328.2882882882883,-327.92792792792795,-327.56756756756755,-327.2072072072072,-326.84684684684686,-326.4864864864865,-326.1261261261261,-325.76576576576576,-325.4054054054054,-325.0450450450451,-324.68468468468467,-324.3243243243243,-323.963963963964,-323.60360360360363,-323.2432432432432,-322.8828828828829,-322.52252252252254,-322.1621621621622,-321.8018018018018,-321.44144144144144,-321.0810810810811,-320.72072072072075,-320.36036036036035,-320.0,-319.63963963963965,-319.27927927927925,-318.9189189189189,-318.55855855855856,-318.1981981981982,-317.8378378378378,-317.47747747747746,-317.1171171171171,-316.7567567567568,-316.39639639639637,-316.036036036036,-315.6756756756757,-315.31531531531533,-314.9549549549549,-314.5945945945946,-314.23423423423424,-313.8738738738739,-313.5135135135135,-313.15315315315314,-312.7927927927928,-312.43243243243245,-312.07207207207205,-311.7117117117117,-311.35135135135135,-310.990990990991,-310.6306306306306,-310.27027027027026,-309.9099099099099,-309.54954954954957,-309.18918918918916,-308.8288288288288,-308.4684684684685,-308.1081081081081,-307.7477477477477,-307.3873873873874,-307.02702702702703,-306.6666666666667,-306.3063063063063,-305.94594594594594,-305.5855855855856,-305.22522522522524,-304.86486486486484,-304.5045045045045,-304.14414414414415,-303.7837837837838,-303.4234234234234,-303.06306306306305,-302.7027027027027,-302.34234234234236,-301.98198198198196,-301.6216216216216,-301.26126126126127,-300.9009009009009,-300.5405405405405,-300.1801801801802,-299.8198198198198,-299.4594594594595,-299.0990990990991,-298.73873873873873,-298.3783783783784,-298.01801801801804,-297.65765765765764,-297.2972972972973,-296.93693693693695,-296.5765765765766,-296.2162162162162,-295.85585585585585,-295.4954954954955,-295.13513513513516,-294.77477477477476,-294.4144144144144,-294.05405405405406,-293.6936936936937,-293.3333333333333,-292.97297297297297,-292.6126126126126,-292.2522522522523,-291.8918918918919,-291.5315315315315,-291.1711711711712,-290.81081081081084,-290.45045045045043,-290.0900900900901,-289.72972972972974,-289.3693693693694,-289.009009009009,-288.64864864864865,-288.2882882882883,-287.92792792792795,-287.56756756756755,-287.2072072072072,-286.84684684684686,-286.4864864864865,-286.1261261261261,-285.76576576576576,-285.4054054054054,-285.0450450450451,-284.68468468468467,-284.3243243243243,-283.963963963964,-283.60360360360363,-283.2432432432432,-282.8828828828829,-282.52252252252254,-282.1621621621622,-281.8018018018018,-281.44144144144144,-281.0810810810811,-280.72072072072075,-280.36036036036035,-280.0,-279.63963963963965,-279.27927927927925,-278.9189189189189,-278.55855855855856,-278.1981981981982,-277.8378378378378,-277.47747747747746,-277.1171171171171,-276.7567567567568,-276.39639639639637,-276.036036036036,-275.6756756756757,-275.31531531531533,-274.9549549549549,-274.5945945945946,-274.23423423423424,-273.8738738738739,-273.5135135135135,-273.15315315315314,-272.7927927927928,-272.43243243243245,-272.07207207207205,-271.7117117117117,-271.35135135135135,-270.990990990991,-270.6306306306306,-270.27027027027026,-269.9099099099099,-269.54954954954957,-269.18918918918916,-268.8288288288288,-268.4684684684685,-268.1081081081081,-267.7477477477477,-267.3873873873874,-267.02702702702703,-266.6666666666667,-266.3063063063063,-265.94594594594594,-265.5855855855856,-265.22522522522524,-264.86486486486484,-264.5045045045045,-264.14414414414415,-263.7837837837838,-263.4234234234234,-263.06306306306305,-262.7027027027027,-262.34234234234236,-261.98198198198196,-261.6216216216216,-261.26126126126127,-260.9009009009009,-260.5405405405405,-260.1801801801802,-259.8198198198198,-259.4594594594595,-259.0990990990991,-258.73873873873873,-258.3783783783784,-258.01801801801804,-257.65765765765764,-257.2972972972973,-256.93693693693695,-256.5765765765766,-256.2162162162162,-255.85585585585585,-255.4954954954955,-255.13513513513513,-254.77477477477478,-254.4144144144144,-254.05405405405406,-253.6936936936937,-253.33333333333334,-252.97297297297297,-252.61261261261262,-252.25225225225225,-251.8918918918919,-251.53153153153153,-251.17117117117118,-250.8108108108108,-250.45045045045046,-250.0900900900901,-249.72972972972974,-249.36936936936937,-249.00900900900902,-248.64864864864865,-248.2882882882883,-247.92792792792793,-247.56756756756758,-247.2072072072072,-246.84684684684686,-246.48648648648648,-246.12612612612614,-245.76576576576576,-245.40540540540542,-245.04504504504504,-244.6846846846847,-244.32432432432432,-243.96396396396398,-243.6036036036036,-243.24324324324326,-242.88288288288288,-242.52252252252254,-242.16216216216216,-241.80180180180182,-241.44144144144144,-241.0810810810811,-240.72072072072072,-240.36036036036037,-240.0,-239.63963963963963,-239.27927927927928,-238.9189189189189,-238.55855855855856,-238.19819819819818,-237.83783783783784,-237.47747747747746,-237.11711711711712,-236.75675675675674,-236.3963963963964,-236.03603603603602,-235.67567567567568,-235.3153153153153,-234.95495495495496,-234.59459459459458,-234.23423423423424,-233.87387387387386,-233.51351351351352,-233.15315315315314,-232.7927927927928,-232.43243243243242,-232.07207207207207,-231.7117117117117,-231.35135135135135,-230.99099099099098,-230.63063063063063,-230.27027027027026,-229.9099099099099,-229.54954954954954,-229.1891891891892,-228.82882882882882,-228.46846846846847,-228.1081081081081,-227.74774774774775,-227.38738738738738,-227.02702702702703,-226.66666666666666,-226.3063063063063,-225.94594594594594,-225.5855855855856,-225.22522522522522,-224.86486486486487,-224.5045045045045,-224.14414414414415,-223.78378378378378,-223.42342342342343,-223.06306306306305,-222.7027027027027,-222.34234234234233,-221.981981981982,-221.6216216216216,-221.26126126126127,-220.9009009009009,-220.54054054054055,-220.18018018018017,-219.81981981981983,-219.45945945945945,-219.0990990990991,-218.73873873873873,-218.3783783783784,-218.018018018018,-217.65765765765767,-217.2972972972973,-216.93693693693695,-216.57657657657657,-216.21621621621622,-215.85585585585585,-215.4954954954955,-215.13513513513513,-214.77477477477478,-214.4144144144144,-214.05405405405406,-213.6936936936937,-213.33333333333334,-212.97297297297297,-212.61261261261262,-212.25225225225225,-211.8918918918919,-211.53153153153153,-211.17117117117118,-210.8108108108108,-210.45045045045046,-210.0900900900901,-209.72972972972974,-209.36936936936937,-209.00900900900902,-208.64864864864865,-208.2882882882883,-207.92792792792793,-207.56756756756758,-207.2072072072072,-206.84684684684686,-206.48648648648648,-206.12612612612614,-205.76576576576576,-205.40540540540542,-205.04504504504504,-204.6846846846847,-204.32432432432432,-203.96396396396398,-203.6036036036036,-203.24324324324326,-202.88288288288288,-202.52252252252254,-202.16216216216216,-201.80180180180182,-201.44144144144144,-201.0810810810811,-200.72072072072072,-200.36036036036037,-200.0,-199.63963963963963,-199.27927927927928,-198.9189189189189,-198.55855855855856,-198.19819819819818,-197.83783783783784,-197.47747747747746,-197.11711711711712,-196.75675675675674,-196.3963963963964,-196.03603603603602,-195.67567567567568,-195.3153153153153,-194.95495495495496,-194.59459459459458,-194.23423423423424,-193.87387387387386,-193.51351351351352,-193.15315315315314,-192.7927927927928,-192.43243243243242,-192.07207207207207,-191.7117117117117,-191.35135135135135,-190.99099099099098,-190.63063063063063,-190.27027027027026,-189.9099099099099,-189.54954954954954,-189.1891891891892,-188.82882882882882,-188.46846846846847,-188.1081081081081,-187.74774774774775,-187.38738738738738,-187.02702702702703,-186.66666666666666,-186.3063063063063,-185.94594594594594,-185.5855855855856,-185.22522522522522,-184.86486486486487,-184.5045045045045,-184.14414414414415,-183.78378378378378,-183.42342342342343,-183.06306306306305,-182.7027027027027,-182.34234234234233,-181.981981981982,-181.6216216216216,-181.26126126126127,-180.9009009009009,-180.54054054054055,-180.18018018018017,-179.81981981981983,-179.45945945945945,-179.0990990990991,-178.73873873873873,-178.3783783783784,-178.018018018018,-177.65765765765767,-177.2972972972973,-176.93693693693695,-176.57657657657657,-176.21621621621622,-175.85585585585585,-175.4954954954955,-175.13513513513513,-174.77477477477478,-174.4144144144144,-174.05405405405406,-173.6936936936937,-173.33333333333334,-172.97297297297297,-172.61261261261262,-172.25225225225225,-171.8918918918919,-171.53153153153153,-171.17117117117118,-170.8108108108108,-170.45045045045046,-170.0900900900901,-169.72972972972974,-169.36936936936937,-169.00900900900902,-168.64864864864865,-168.2882882882883,-167.92792792792793,-167.56756756756758,-167.2072072072072,-166.84684684684686,-166.48648648648648,-166.12612612612614,-165.76576576576576,-165.40540540540542,-165.04504504504504,-164.6846846846847,-164.32432432432432,-163.96396396396398,-163.6036036036036,-163.24324324324326,-162.88288288288288,-162.52252252252254,-162.16216216216216,-161.80180180180182,-161.44144144144144,-161.0810810810811,-160.72072072072072,-160.36036036036037,-160.0,-159.63963963963963,-159.27927927927928,-158.9189189189189,-158.55855855855856,-158.19819819819818,-157.83783783783784,-157.47747747747746,-157.11711711711712,-156.75675675675674,-156.3963963963964,-156.03603603603602,-155.67567567567568,-155.3153153153153,-154.95495495495496,-154.59459459459458,-154.23423423423424,-153.87387387387386,-153.51351351351352,-153.15315315315314,-152.7927927927928,-152.43243243243242,-152.07207207207207,-151.7117117117117,-151.35135135135135,-150.99099099099098,-150.63063063063063,-150.27027027027026,-149.9099099099099,-149.54954954954954,-149.1891891891892,-148.82882882882882,-148.46846846846847,-148.1081081081081,-147.74774774774775,-147.38738738738738,-147.02702702702703,-146.66666666666666,-146.3063063063063,-145.94594594594594,-145.5855855855856,-145.22522522522522,-144.86486486486487,-144.5045045045045,-144.14414414414415,-143.78378378378378,-143.42342342342343,-143.06306306306305,-142.7027027027027,-142.34234234234233,-141.981981981982,-141.6216216216216,-141.26126126126127,-140.9009009009009,-140.54054054054055,-140.18018018018017,-139.81981981981983,-139.45945945945945,-139.0990990990991,-138.73873873873873,-138.3783783783784,-138.018018018018,-137.65765765765767,-137.2972972972973,-136.93693693693695,-136.57657657657657,-136.21621621621622,-135.85585585585585,-135.4954954954955,-135.13513513513513,-134.77477477477478,-134.4144144144144,-134.05405405405406,-133.6936936936937,-133.33333333333334,-132.97297297297297,-132.61261261261262,-132.25225225225225,-131.8918918918919,-131.53153153153153,-131.17117117117118,-130.8108108108108,-130.45045045045046,-130.0900900900901,-129.72972972972974,-129.36936936936937,-129.00900900900902,-128.64864864864865,-128.2882882882883,-127.92792792792793,-127.56756756756756,-127.2072072072072,-126.84684684684684,-126.48648648648648,-126.12612612612612,-125.76576576576576,-125.4054054054054,-125.04504504504504,-124.68468468468468,-124.32432432432432,-123.96396396396396,-123.6036036036036,-123.24324324324324,-122.88288288288288,-122.52252252252252,-122.16216216216216,-121.8018018018018,-121.44144144144144,-121.08108108108108,-120.72072072072072,-120.36036036036036,-120.0,-119.63963963963964,-119.27927927927928,-118.91891891891892,-118.55855855855856,-118.1981981981982,-117.83783783783784,-117.47747747747748,-117.11711711711712,-116.75675675675676,-116.3963963963964,-116.03603603603604,-115.67567567567568,-115.31531531531532,-114.95495495495496,-114.5945945945946,-114.23423423423424,-113.87387387387388,-113.51351351351352,-113.15315315315316,-112.7927927927928,-112.43243243243244,-112.07207207207207,-111.71171171171171,-111.35135135135135,-110.990990990991,-110.63063063063063,-110.27027027027027,-109.90990990990991,-109.54954954954955,-109.1891891891892,-108.82882882882883,-108.46846846846847,-108.10810810810811,-107.74774774774775,-107.38738738738739,-107.02702702702703,-106.66666666666667,-106.30630630630631,-105.94594594594595,-105.58558558558559,-105.22522522522523,-104.86486486486487,-104.50450450450451,-104.14414414414415,-103.78378378378379,-103.42342342342343,-103.06306306306307,-102.70270270270271,-102.34234234234235,-101.98198198198199,-101.62162162162163,-101.26126126126127,-100.90090090090091,-100.54054054054055,-100.18018018018019,-99.81981981981981,-99.45945945945945,-99.09909909909909,-98.73873873873873,-98.37837837837837,-98.01801801801801,-97.65765765765765,-97.29729729729729,-96.93693693693693,-96.57657657657657,-96.21621621621621,-95.85585585585585,-95.49549549549549,-95.13513513513513,-94.77477477477477,-94.41441441441441,-94.05405405405405,-93.69369369369369,-93.33333333333333,-92.97297297297297,-92.61261261261261,-92.25225225225225,-91.89189189189189,-91.53153153153153,-91.17117117117117,-90.8108108108108,-90.45045045045045,-90.09009009009009,-89.72972972972973,-89.36936936936937,-89.009009009009,-88.64864864864865,-88.28828828828829,-87.92792792792793,-87.56756756756756,-87.2072072072072,-86.84684684684684,-86.48648648648648,-86.12612612612612,-85.76576576576576,-85.4054054054054,-85.04504504504504,-84.68468468468468,-84.32432432432432,-83.96396396396396,-83.6036036036036,-83.24324324324324,-82.88288288288288,-82.52252252252252,-82.16216216216216,-81.8018018018018,-81.44144144144144,-81.08108108108108,-80.72072072072072,-80.36036036036036,-80.0,-79.63963963963964,-79.27927927927928,-78.91891891891892,-78.55855855855856,-78.1981981981982,-77.83783783783784,-77.47747747747748,-77.11711711711712,-76.75675675675676,-76.3963963963964,-76.03603603603604,-75.67567567567568,-75.31531531531532,-74.95495495495496,-74.5945945945946,-74.23423423423424,-73.87387387387388,-73.51351351351352,-73.15315315315316,-72.7927927927928,-72.43243243243244,-72.07207207207207,-71.71171171171171,-71.35135135135135,-70.990990990991,-70.63063063063063,-70.27027027027027,-69.90990990990991,-69.54954954954955,-69.1891891891892,-68.82882882882883,-68.46846846846847,-68.10810810810811,-67.74774774774775,-67.38738738738739,-67.02702702702703,-66.66666666666667,-66.30630630630631,-65.94594594594595,-65.58558558558559,-65.22522522522523,-64.86486486486487,-64.50450450450451,-64.14414414414415,-63.78378378378378,-63.42342342342342,-63.06306306306306,-62.7027027027027,-62.34234234234234,-61.98198198198198,-61.62162162162162,-61.26126126126126,-60.9009009009009,-60.54054054054054,-60.18018018018018,-59.81981981981982,-59.45945945945946,-59.0990990990991,-58.73873873873874,-58.37837837837838,-58.01801801801802,-57.65765765765766,-57.2972972972973,-56.93693693693694,-56.57657657657658,-56.21621621621622,-55.85585585585586,-55.4954954954955,-55.13513513513514,-54.77477477477478,-54.414414414414416,-54.054054054054056,-53.693693693693696,-53.333333333333336,-52.972972972972975,-52.612612612612615,-52.252252252252255,-51.891891891891895,-51.531531531531535,-51.171171171171174,-50.810810810810814,-50.450450450450454,-50.090090090090094,-49.729729729729726,-49.369369369369366,-49.009009009009006,-48.648648648648646,-48.288288288288285,-47.927927927927925,-47.567567567567565,-47.207207207207205,-46.846846846846844,-46.486486486486484,-46.126126126126124,-45.765765765765764,-45.4054054054054,-45.04504504504504,-44.68468468468468,-44.32432432432432,-43.96396396396396,-43.6036036036036,-43.24324324324324,-42.88288288288288,-42.52252252252252,-42.16216216216216,-41.8018018018018,-41.44144144144144,-41.08108108108108,-40.72072072072072,-40.36036036036036,-40.0,-39.63963963963964,-39.27927927927928,-38.91891891891892,-38.55855855855856,-38.1981981981982,-37.83783783783784,-37.47747747747748,-37.11711711711712,-36.75675675675676,-36.3963963963964,-36.03603603603604,-35.67567567567568,-35.31531531531532,-34.95495495495496,-34.5945945945946,-34.234234234234236,-33.873873873873876,-33.513513513513516,-33.153153153153156,-32.792792792792795,-32.432432432432435,-32.072072072072075,-31.71171171171171,-31.35135135135135,-30.99099099099099,-30.63063063063063,-30.27027027027027,-29.90990990990991,-29.54954954954955,-29.18918918918919,-28.82882882882883,-28.46846846846847,-28.10810810810811,-27.74774774774775,-27.38738738738739,-27.027027027027028,-26.666666666666668,-26.306306306306308,-25.945945945945947,-25.585585585585587,-25.225225225225227,-24.864864864864863,-24.504504504504503,-24.144144144144143,-23.783783783783782,-23.423423423423422,-23.063063063063062,-22.7027027027027,-22.34234234234234,-21.98198198198198,-21.62162162162162,-21.26126126126126,-20.9009009009009,-20.54054054054054,-20.18018018018018,-19.81981981981982,-19.45945945945946,-19.0990990990991,-18.73873873873874,-18.37837837837838,-18.01801801801802,-17.65765765765766,-17.2972972972973,-16.936936936936938,-16.576576576576578,-16.216216216216218,-15.855855855855856,-15.495495495495495,-15.135135135135135,-14.774774774774775,-14.414414414414415,-14.054054054054054,-13.693693693693694,-13.333333333333334,-12.972972972972974,-12.612612612612613,-12.252252252252251,-11.891891891891891,-11.531531531531531,-11.17117117117117,-10.81081081081081,-10.45045045045045,-10.09009009009009,-9.72972972972973,-9.36936936936937,-9.00900900900901,-8.64864864864865,-8.288288288288289,-7.927927927927928,-7.5675675675675675,-7.207207207207207,-6.846846846846847,-6.486486486486487,-6.126126126126126,-5.7657657657657655,-5.405405405405405,-5.045045045045045,-4.684684684684685,-4.324324324324325,-3.963963963963964,-3.6036036036036037,-3.2432432432432434,-2.8828828828828827,-2.5225225225225225,-2.1621621621621623,-1.8018018018018018,-1.4414414414414414,-1.0810810810810811,-0.7207207207207207,-0.36036036036036034,0.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/positive.json b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/positive.json index 155d4b2e6037..68ed18d56d41 100644 --- a/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/positive.json +++ b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/positive.json @@ -1 +1 @@ -{"expected":[0.17364817766693036,0.17347612158637143,0.17330406021084302,0.1731319935455969,0.17295992159588505,0.17278784436695957,0.17261576186407268,0.1724436740924769,0.17227158105742477,0.17209948276416903,0.17192737921796264,0.17175527042405864,0.17158315638771027,0.17141103711417094,0.17123891260869417,0.17106678287653374,0.17089464792294345,0.17072250775317738,0.17055036237248972,0.1703782117861348,0.17020605599936714,0.17003389501744143,0.16986172884561246,0.16968955748913525,0.1695173809532649,0.16934519924325678,0.1691730123643663,0.16900082032184907,0.16882862312096092,0.16865642076695772,0.1684842132650956,0.16831200062063081,0.16813978283881972,0.16796755992491894,0.16779533188418516,0.16762309872187525,0.16745086044324625,0.16727861705355535,0.16710636855805985,0.16693411496201732,0.1667618562706854,0.16658959248932187,0.16641732362318468,0.166245049677532,0.16607277065762208,0.16590048656871337,0.16572819741606443,0.165555903204934,0.165383603940581,0.16521129962826445,0.16503899027324356,0.16486667588077772,0.1646943564561264,0.16452203200454926,0.16434970253130615,0.16417736804165703,0.164005028540862,0.16383268403418136,0.16366033452687553,0.16348798002420512,0.1633156205314308,0.16314325605381352,0.16297088659661432,0.16279851216509433,0.16262613276451496,0.16245374840013765,0.1622813590772241,0.16210896480103607,0.1619365655768355,0.1617641614098845,0.16159175230544537,0.16141933826878044,0.16124691930515228,0.16107449541982363,0.16090206661805728,0.1607296329051163,0.1605571942862638,0.1603847507667631,0.1602123023518776,0.160039849046871,0.15986739085700696,0.15969492778754943,0.15952245984376243,0.1593499870309102,0.159177509354257,0.15900502681906742,0.15883253943060605,0.1586600471941377,0.1584875501149273,0.15831504819823994,0.15814254144934084,0.1579700298734954,0.15779751347596913,0.15762499226202772,0.157452466236937,0.15727993540596294,0.15710739977437163,0.15693485934742937,0.15676231413040254,0.15658976412855768,0.15641720934716155,0.15624464979148098,0.15607208546678292,0.15589951637833455,0.15572694253140312,0.1555543639312561,0.15538178058316104,0.15520919249238566,0.15503659966419783,0.15486400210386558,0.15469139981665703,0.1545187928078405,0.1543461810826844,0.15417356464645735,0.15400094350442808,0.15382831766186544,0.15365568712403843,0.15348305189621628,0.15331041198366824,0.15313776739166374,0.15296511812547242,0.15279246419036396,0.1526198055916083,0.1524471423344754,0.15227447442423542,0.15210180186615868,0.15192912466551564,0.15175644282757683,0.15158375635761304,0.1514110652608951,0.151238369542694,0.15106566920828093,0.15089296426292717,0.15072025471190414,0.15054754056048342,0.15037482181393672,0.15020209847753588,0.1500293705565529,0.14985663805625996,0.14968390098192924,0.14951115933883322,0.1493384131322444,0.14916566236743556,0.14899290704967943,0.14882014718424902,0.14864738277641745,0.14847461383145794,0.1483018403546439,0.14812906235124884,0.1479562798265464,0.14778349278581043,0.1476107012343148,0.14743790517733366,0.14726510462014117,0.14709229956801168,0.1469194900262197,0.14674667600003985,0.14657385749474688,0.14640103451561567,0.1462282070679213,0.14605537515693892,0.1458825387879438,0.14570969796621144,0.14553685269701738,0.14536400298563737,0.1451911488373472,0.1450182902574229,0.1448454272511406,0.14467255982377653,0.14449968798060708,0.14432681172690878,0.14415393106795832,0.14398104600903244,0.1438081565554081,0.14363526271236235,0.1434623644851724,0.1432894618791156,0.14311655489946937,0.14294364355151132,0.1427707278405192,0.14259780777177086,0.1424248833505443,0.14225195458211765,0.14207902147176918,0.14190608402477728,0.14173314224642045,0.1415601961419774,0.1413872457167269,0.14121429097594784,0.14104133192491933,0.14086836856892054,0.14069540091323077,0.1405224289631295,0.14034945272389626,0.1401764722008108,0.140003487399153,0.13983049832420275,0.13965750498124022,0.1394845073755456,0.13931150551239926,0.1391384993970817,0.13896548903487357,0.1387924744310556,0.13861945559090866,0.1384464325197138,0.13827340522275214,0.13810037370530492,0.13792733797265358,0.13775429803007963,0.13758125388286474,0.13740820553629068,0.13723515299563938,0.13706209626619284,0.13688903535323327,0.13671597026204296,0.13654290099790434,0.13636982756609992,0.13619674997191242,0.13602366822062462,0.13585058231751948,0.13567749226788,0.13550439807698947,0.13533129975013108,0.13515819729258838,0.13498509070964484,0.13481198000658423,0.1346388651886903,0.13446574626124702,0.13429262322953847,0.13411949609884882,0.1339463648744624,0.13377322956166365,0.13360009016573715,0.13342694669196756,0.1332537991456397,0.13308064753203855,0.13290749185644912,0.13273433212415667,0.13256116834044643,0.1323880005106039,0.1322148286399146,0.13204165273366422,0.1318684727971386,0.13169528883562362,0.13152210085440535,0.13134890885876999,0.1311757128540038,0.13100251284539324,0.1308293088382248,0.1306561008377852,0.13048288884936118,0.13030967287823966,0.13013645292970769,0.12996322900905238,0.12979000112156105,0.12961676927252108,0.12944353346721993,0.1292702937109453,0.12909705000898494,0.12892380236662668,0.12875055078915856,0.12857729528186868,0.12840403585004526,0.12823077249897666,0.12805750523395137,0.127884234060258,0.12771095898318524,0.12753768000802193,0.12736439714005698,0.12719111038457953,0.12701781974687876,0.12684452523224393,0.1266712268459645,0.12649792459332998,0.12632461847963009,0.12615130851015458,0.12597799469019336,0.1258046770250364,0.1256313555199739,0.12545803018029605,0.12528470101129324,0.12511136801825598,0.12493803120647486,0.12476469058124057,0.12459134614784396,0.12441799791157598,0.12424464587772771,0.1240712900515903,0.12389793043845508,0.12372456704361344,0.12355119987235692,0.12337782892997717,0.12320445422176594,0.12303107575301511,0.12285769352901665,0.1226843075550627,0.12251091783644544,0.12233752437845721,0.12216412718639048,0.1219907262655378,0.12181732162119181,0.12164391325864535,0.1214705011831913,0.12129708540012267,0.12112366591473259,0.12095024273231429,0.12077681585816115,0.12060338529756662,0.12042995105582427,0.1202565131382278,0.12008307155007103,0.11990962629664785,0.11973617738325229,0.11956272481517852,0.11938926859772074,0.11921580873617336,0.11904234523583082,0.11886887810198772,0.11869540733993876,0.11852193295497873,0.11834845495240255,0.11817497333750525,0.11800148811558198,0.11782799929192797,0.11765450687183858,0.11748101086060928,0.11730751126353564,0.11713400808591336,0.11696050133303823,0.11678699101020615,0.11661347712271312,0.1164399596758553,0.11626643867492889,0.11609291412523023,0.11591938603205579,0.1157458544007021,0.11557231923646584,0.11539878054464377,0.11522523833053278,0.11505169259942985,0.11487814335663209,0.11470459060743667,0.11453103435714092,0.11435747461104226,0.1141839113744382,0.11401034465262637,0.11383677445090451,0.11366320077457046,0.11348962362892215,0.11331604301925766,0.11314245895087514,0.11296887142907285,0.11279528045914916,0.11262168604640253,0.11244808819613158,0.11227448691363497,0.11210088220421147,0.11192727407316001,0.11175366252577958,0.11158004756736926,0.11140642920322828,0.11123280743865595,0.11105918227895167,0.11088555372941498,0.11071192179534549,0.11053828648204292,0.1103646477948071,0.11019100573893799,0.11001736031973558,0.10984371154250003,0.10967005941253158,0.10949640393513056,0.10932274511559742,0.10914908295923272,0.10897541747133709,0.10880174865721128,0.10862807652215614,0.10845440107147264,0.10828072231046183,0.10810704024442484,0.10793335487866296,0.10775966621847752,0.10758597426916999,0.10741227903604192,0.10723858052439496,0.10706487873953088,0.10689117368675155,0.1067174653713589,0.106543753798655,0.10637003897394201,0.10619632090252216,0.10602259958969784,0.10584887504077149,0.10567514726104565,0.10550141625582299,0.10532768203040625,0.10515394459009827,0.10498020394020201,0.1048064600860205,0.1046327130328569,0.10445896278601442,0.10428520935079642,0.10411145273250634,0.10393769293644768,0.10376392996792409,0.1035901638322393,0.10341639453469713,0.10324262208060148,0.10306884647525637,0.10289506772396592,0.10272128583203434,0.1025475008047659,0.10237371264746506,0.10219992136543625,0.1020261269639841,0.10185232944841327,0.10167852882402856,0.10150472509613483,0.10133091827003704,0.10115710835104028,0.10098329534444969,0.10080947925557052,0.10063566008970813,0.10046183785216795,0.10028801254825552,0.10011418418327646,0.09994035276253649,0.09976651829134144,0.0995926807749972,0.09941884021880977,0.09924499662808525,0.09907115000812984,0.09889730036424979,0.09872344770175148,0.0985495920259414,0.09837573334212606,0.09820187165561213,0.09802800697170634,0.09785413929571554,0.09768026863294663,0.09750639498870663,0.09733251836830263,0.09715863877704184,0.09698475622023153,0.09681087070317909,0.09663698223119198,0.09646309080957775,0.09628919644364406,0.09611529913869864,0.0959413989000493,0.09576749573300396,0.09559358964287064,0.09541968063495741,0.09524576871457248,0.0950718538870241,0.09489793615762064,0.09472401553167054,0.09455009201448235,0.09437616561136468,0.09420223632762625,0.09402830416857587,0.09385436913952241,0.09368043124577487,0.09350649049264229,0.09333254688543384,0.09315860042945874,0.09298465113002634,0.09281069899244603,0.09263674402202732,0.0924627862240798,0.09228882560391313,0.09211486216683706,0.09194089591816147,0.09176692686319625,0.09159295500725143,0.09141898035563711,0.09124500291366348,0.09107102268664082,0.09089703967987946,0.09072305389868986,0.09054906534838254,0.09037507403426812,0.09020107996165727,0.0900270831358608,0.08985308356218956,0.08967908124595449,0.08950507619246661,0.08933106840703706,0.08915705789497703,0.08898304466159779,0.08880902871221072,0.08863501005212725,0.08846098868665891,0.08828696462111732,0.08811293786081419,0.08793890841106125,0.0877648762771704,0.08759084146445358,0.08741680397822278,0.08724276382379013,0.08706872100646781,0.0868946755315681,0.08672062740440332,0.08654657663028592,0.08637252321452839,0.08619846716244334,0.08602440847934342,0.08585034717054141,0.08567628324135011,0.08550221669708247,0.08532814754305143,0.0851540757845701,0.0849800014269516,0.08480592447550919,0.08463184493555616,0.08445776281240591,0.08428367811137188,0.08410959083776764,0.08393550099690682,0.0837614085941031,0.08358731363467027,0.08341321612392218,0.08323911606717278,0.08306501346973608,0.08289090833692615,0.08271680067405719,0.08254269048644343,0.0823685777793992,0.08219446255823888,0.08202034482827697,0.08184622459482802,0.08167210186320664,0.08149797663872757,0.08132384892670556,0.08114971873245548,0.08097558606129227,0.08080145091853091,0.08062731330948654,0.08045317323947426,0.08027903071380935,0.0801048857378071,0.07993073831678288,0.07975658845605219,0.07958243616093051,0.07940828143673351,0.07923412428877682,0.07905996472237622,0.07888580274284754,0.07871163835550668,0.07853747156566962,0.07836330237865241,0.07818913079977116,0.07801495683434209,0.07784078048768146,0.0776666017651056,0.07749242067193095,0.07731823721347397,0.07714405139505125,0.07696986322197938,0.0767956726995751,0.07662147983315518,0.07644728462803645,0.07627308708953583,0.07609888722297031,0.07592468503365697,0.07575048052691292,0.07557627370805538,0.0754020645824016,0.07522785315526893,0.0750536394319748,0.07487942341783667,0.07470520511817211,0.07453098453829872,0.07435676168353422,0.07418253655919636,0.07400830917060297,0.07383407952307194,0.07365984762192127,0.07348561347246896,0.07331137708003314,0.07313713844993198,0.07296289758748374,0.0727886544980067,0.07261440918681926,0.07244016165923985,0.07226591192058701,0.07209165997617929,0.07191740583133538,0.07174314949137396,0.07156889096161384,0.07139463024737386,0.07122036735397293,0.07104610228673004,0.07087183505096425,0.07069756565199467,0.07052329409514048,0.07034902038572093,0.07017474452905532,0.07000046653046305,0.06982618639526356,0.06965190412877635,0.06947761973632101,0.06930333322321718,0.06912904459478454,0.06895475385634289,0.06878046101321204,0.06860616607071192,0.06843186903416246,0.06825756990888371,0.06808326870019572,0.0679089654134187,0.06773466005387282,0.06756035262687839,0.06738604313775573,0.06721173159182527,0.06703741799440746,0.06686310235082284,0.06668878466639198,0.06651446494643559,0.06634014319627433,0.06616581942122902,0.0659914936266205,0.06581716581776965,0.06564283599999746,0.06546850417862493,0.06529417035897317,0.06511983454636332,0.06494549674611659,0.06477115696355426,0.06459681520399764,0.06442247147276814,0.06424812577518721,0.06407377811657634,0.06389942850225713,0.06372507693755121,0.06355072342778023,0.06337636797826599,0.06320201059433027,0.06302765128129495,0.06285329004448195,0.06267892688921325,0.06250456182081092,0.06233019484459703,0.06215582596589376,0.06198145519002332,0.061807082522308,0.06163270796807012,0.06145833153263208,0.06128395322131633,0.06110957303944537,0.06093519099234177,0.060760807085328154,0.060586421323727185,0.060412033712861614,0.060237644258054224,0.06006325296462786,0.05988885983790543,0.05971446488320989,0.059540068105864256,0.0593656695111916,0.05919126910451504,0.05901686689115777,0.05884246287644301,0.058668057065694064,0.05849364946423428,0.05831924007738705,0.05814482891047583,0.057970415968824136,0.05779600125775553,0.057621584782593625,0.057447166548662096,0.05727274656128467,0.05709832482578513,0.056923901347487295,0.056749476131715056,0.05657504918379236,0.05640062050904319,0.056226190112791584,0.056051758000361655,0.05587732417707754,0.05570288864826344,0.05552845141924362,0.055354012495342365,0.055179571881884056,0.05500512958419308,0.05483068560759391,0.05465623995741105,0.05448179263896906,0.054307343657592565,0.05413289301860622,0.05395844072733475,0.05378398678910291,0.053609531209235506,0.05343507399305742,0.05326061514589356,0.053086154673068896,0.05291169257990844,0.05273722887173724,0.05256276355388044,0.05238829663166318,0.05221382811041068,0.05203935799544819,0.05186488629210104,0.05169041300569457,0.05151593814155418,0.051341461705005344,0.051166983701373556,0.05099250413598436,0.050818023014163355,0.050643540341236186,0.050469056122528555,0.05029457036336619,0.050120083069074874,0.049945594244980455,0.049771103896408805,0.049596612028685844,0.04942211864713756,0.04924762375708996,0.04907312736386911,0.048898629472801124,0.04872413008921216,0.04854962921842842,0.04837512686577614,0.04820062303658164,0.04802611773617123,0.047851610969871304,0.04767710274300829,0.04750259306090866,0.04732808192889894,0.04715356935230567,0.046979055336455466,0.04680453988667498,0.0466300230082909,0.046455504706629965,0.04628098498701896,0.04610646385478469,0.045931941315254035,0.045757417373753904,0.04558289203561125,0.04540836530615306,0.04523383719070637,0.045059307694598275,0.04488477682315588,0.04471024458170635,0.0445357109755769,0.04436117601009477,0.04418663969058725,0.04401210202238166,0.043837563010805394,0.04366302266118584,0.04348848097885046,0.043313937969126755,0.04313939363734224,0.04296484798882451,0.04279030102890117,0.04261575276289987,0.04244120319614831,0.04226665233397422,0.04209210018170537,0.0419175467446696,0.041742992028194724,0.04156843603760865,0.041393878778239315,0.04121932025541468,0.04104476047446275,0.04087019944071158,0.04069563715948925,0.040521073636123874,0.04034650887594362,0.04017194288427668,0.039997375666451306,0.03982280722779575,0.03964823757363833,0.039473666709307395,0.03929909464013132,0.03912452137143854,0.038949946908557506,0.03877537125681672,0.03860079442154469,0.03842621640807,0.038251637221721244,0.03807705686782707,0.03790247535171615,0.03772789267871718,0.03755330885415892,0.037378723883370144,0.03720413777167966,0.037029550524416324,0.036854962146909025,0.036680372644486675,0.03650578202247823,0.03633119028621267,0.03615659744101902,0.03598200349222634,0.03580740844516372,0.035632812305160265,0.03545821507754515,0.03528361676764755,0.035109017380796706,0.03493441692232185,0.034759815397552275,0.03458521281181731,0.034410609170446305,0.03423600447876864,0.03406139874211374,0.033886791965811035,0.03371218415519002,0.03353757531558021,0.033362965452311134,0.03318835457071238,0.033013742676113546,0.032839129773844275,0.032664515869234224,0.032489900967613096,0.03231528507431062,0.03214066819465655,0.031966050333980686,0.031791431497612835,0.031616811690882846,0.03144219091912061,0.03126756918765601,0.031092946501819006,0.030918322866939553,0.03074369828834765,0.030569072771373315,0.030394446321346604,0.0302198189435976,0.030045190643456406,0.029870561426253165,0.029695931297318037,0.02952130026198122,0.029346668325572926,0.029172035493423412,0.028997401770862952,0.02882276716322185,0.028648131675830427,0.02847349531401905,0.028298858083118092,0.028124219988457974,0.027949581035369125,0.027774941229182008,0.027600300575227114,0.02742565907883495,0.027251016745336063,0.02707637358006102,0.026901729588340407,0.026727084775504843,0.026552439146884967,0.026377792707811445,0.026203145463614973,0.02602849741962626,0.025853848581176047,0.0256791989535951,0.025504548542214206,0.025329897352364177,0.025155245389375847,0.02498059265858008,0.024805939165307756,0.024631284914889782,0.024456629912657086,0.02428197416394062,0.02410731767407136,0.023932660448380303,0.02375800249219847,0.023583343810856902,0.023408684409686666,0.023234024294018843,0.023059363469184548,0.022884701940514906,0.02271003971334107,0.022535376792994215,0.022360713184805533,0.022186048894106237,0.022011383926227562,0.02183671828650077,0.021662051980257134,0.021487385012827948,0.021312717389544537,0.021138049115738234,0.020963380196740395,0.020788710637882398,0.020614040444495642,0.020439369621911542,0.020264698175461532,0.020090026110477062,0.019915353432289614,0.01974068014623067,0.01956600625763175,0.019391331771824373,0.01921665669414009,0.019041981029910473,0.018867304784467093,0.018692627963141556,0.01851795057126548,0.018343272614170503,0.018168594097188275,0.017993915025650467,0.01781923540488876,0.01764455524023487,0.017469874537020504,0.017295193300577407,0.017120511536237327,0.01694582924933204,0.016771146445193324,0.016596463129152982,0.01642177930654283,0.016247094982694704,0.016072410162940445,0.015897724852611917,0.015723039057040998,0.015548352781559582,0.015373666031499575,0.015198978812192895,0.015024291128971481,0.01484960298716728,0.014674914392112258,0.014500225349138392,0.014325535863577673,0.014150845940762104,0.013976155586023706,0.013801464804694508,0.013626773602106554,0.013452081983591902,0.013277389954482624,0.013102697520110798,0.012928004685808523,0.012753311456907904,0.01257861783874106,0.012403923836640119,0.012229229455937228,0.012054534701964539,0.01187983958005422,0.011705144095538442,0.011530448253749399,0.011355752060019287,0.011181055519680313,0.011006358638064703,0.01083166142050468,0.010656963872332493,0.010482265998880386,0.010307567805480623,0.010132869297465473,0.009958170480167217,0.009783471358918145,0.009608771939050556,0.009434072225896756,0.009259372224789062,0.009084671941059802,0.008909971380041308,0.008735270547065924,0.008560569447466,0.008385868086573897,0.00821116646972198,0.008036464602242626,0.007861762489468217,0.007687060136731142,0.007512357549363799,0.0073376547326985935,0.007162951692067936,0.006988248432804245,0.006813544960239946,0.006638841279707472,0.006464137396539258,0.006289433316067751,0.0061147290436253995,0.0059400245845446595,0.005765319944157994,0.005590615127797869,0.0054159101407967565,0.005241204988487137,0.005066499676201491,0.0048917942092723075,0.004717088593032079,0.004542382832813301,0.004367676933948477,0.004192970901770111,0.0040182647416107135,0.0038435584588027982,0.0036688520586788827,0.0034941455465714883,0.0033194389278131376,0.0031447322077363606,0.0029700253916736864,0.0027953184849576493,0.002620611492920786,0.002445904420895635,0.0022711972742147377,0.0020964900582106385,0.0019217827782158825,0.0017470754395630184,0.0015723680475845949,0.0013976606076131642,0.0012229531249812785,0.0010482456050214916,0.0008735380530663592,0.000698830474448437,0.0005241228745002822,0.0003494152585544523,0.00017470763194350547,0.0],"x":[10.0,9.98998998998999,9.97997997997998,9.96996996996997,9.95995995995996,9.94994994994995,9.93993993993994,9.92992992992993,9.91991991991992,9.90990990990991,9.8998998998999,9.88988988988989,9.87987987987988,9.86986986986987,9.85985985985986,9.84984984984985,9.83983983983984,9.82982982982983,9.81981981981982,9.80980980980981,9.7997997997998,9.78978978978979,9.77977977977978,9.76976976976977,9.75975975975976,9.74974974974975,9.73973973973974,9.72972972972973,9.71971971971972,9.70970970970971,9.6996996996997,9.68968968968969,9.67967967967968,9.66966966966967,9.65965965965966,9.64964964964965,9.63963963963964,9.62962962962963,9.61961961961962,9.60960960960961,9.5995995995996,9.58958958958959,9.57957957957958,9.56956956956957,9.55955955955956,9.54954954954955,9.53953953953954,9.52952952952953,9.51951951951952,9.50950950950951,9.4994994994995,9.48948948948949,9.47947947947948,9.46946946946947,9.45945945945946,9.44944944944945,9.43943943943944,9.42942942942943,9.41941941941942,9.40940940940941,9.3993993993994,9.38938938938939,9.37937937937938,9.36936936936937,9.35935935935936,9.34934934934935,9.33933933933934,9.32932932932933,9.31931931931932,9.30930930930931,9.2992992992993,9.28928928928929,9.27927927927928,9.26926926926927,9.25925925925926,9.24924924924925,9.23923923923924,9.22922922922923,9.21921921921922,9.20920920920921,9.1991991991992,9.18918918918919,9.17917917917918,9.16916916916917,9.15915915915916,9.14914914914915,9.13913913913914,9.12912912912913,9.11911911911912,9.10910910910911,9.0990990990991,9.08908908908909,9.07907907907908,9.06906906906907,9.05905905905906,9.04904904904905,9.03903903903904,9.02902902902903,9.01901901901902,9.00900900900901,8.998998998999,8.98898898898899,8.97897897897898,8.96896896896897,8.95895895895896,8.94894894894895,8.93893893893894,8.92892892892893,8.91891891891892,8.90890890890891,8.8988988988989,8.88888888888889,8.87887887887888,8.86886886886887,8.85885885885886,8.84884884884885,8.83883883883884,8.82882882882883,8.81881881881882,8.80880880880881,8.7987987987988,8.78878878878879,8.77877877877878,8.76876876876877,8.75875875875876,8.74874874874875,8.73873873873874,8.72872872872873,8.71871871871872,8.70870870870871,8.6986986986987,8.68868868868869,8.67867867867868,8.66866866866867,8.65865865865866,8.64864864864865,8.63863863863864,8.62862862862863,8.618618618618619,8.608608608608609,8.598598598598599,8.588588588588589,8.578578578578579,8.568568568568569,8.558558558558559,8.548548548548549,8.538538538538539,8.528528528528529,8.518518518518519,8.508508508508509,8.498498498498499,8.488488488488489,8.478478478478479,8.468468468468469,8.458458458458459,8.448448448448449,8.438438438438439,8.428428428428429,8.418418418418419,8.408408408408409,8.398398398398399,8.388388388388389,8.378378378378379,8.368368368368369,8.358358358358359,8.348348348348349,8.338338338338339,8.328328328328329,8.318318318318319,8.308308308308309,8.298298298298299,8.288288288288289,8.278278278278279,8.268268268268269,8.258258258258259,8.248248248248249,8.238238238238239,8.228228228228229,8.218218218218219,8.208208208208209,8.198198198198199,8.188188188188189,8.178178178178179,8.168168168168169,8.158158158158159,8.148148148148149,8.138138138138139,8.128128128128129,8.118118118118119,8.108108108108109,8.098098098098099,8.088088088088089,8.078078078078079,8.068068068068069,8.058058058058059,8.048048048048049,8.038038038038039,8.028028028028029,8.018018018018019,8.008008008008009,7.997997997997998,7.987987987987988,7.977977977977978,7.967967967967968,7.957957957957958,7.947947947947948,7.937937937937938,7.927927927927928,7.917917917917918,7.907907907907908,7.897897897897898,7.887887887887888,7.877877877877878,7.867867867867868,7.857857857857858,7.847847847847848,7.837837837837838,7.827827827827828,7.817817817817818,7.807807807807808,7.797797797797798,7.787787787787788,7.777777777777778,7.767767767767768,7.757757757757758,7.747747747747748,7.737737737737738,7.727727727727728,7.717717717717718,7.707707707707708,7.697697697697698,7.687687687687688,7.677677677677678,7.667667667667668,7.657657657657658,7.647647647647648,7.637637637637638,7.627627627627628,7.617617617617618,7.607607607607608,7.597597597597598,7.587587587587588,7.5775775775775776,7.5675675675675675,7.5575575575575575,7.5475475475475475,7.5375375375375375,7.5275275275275275,7.5175175175175175,7.5075075075075075,7.4974974974974975,7.4874874874874875,7.4774774774774775,7.4674674674674675,7.4574574574574575,7.4474474474474475,7.4374374374374375,7.4274274274274275,7.4174174174174174,7.407407407407407,7.397397397397397,7.387387387387387,7.377377377377377,7.367367367367367,7.357357357357357,7.347347347347347,7.337337337337337,7.327327327327327,7.317317317317317,7.307307307307307,7.297297297297297,7.287287287287287,7.277277277277277,7.267267267267267,7.257257257257257,7.247247247247247,7.237237237237237,7.227227227227227,7.217217217217217,7.207207207207207,7.197197197197197,7.187187187187187,7.177177177177177,7.167167167167167,7.157157157157157,7.147147147147147,7.137137137137137,7.127127127127127,7.117117117117117,7.107107107107107,7.097097097097097,7.087087087087087,7.077077077077077,7.067067067067067,7.057057057057057,7.047047047047047,7.037037037037037,7.027027027027027,7.017017017017017,7.007007007007007,6.996996996996997,6.986986986986987,6.976976976976977,6.966966966966967,6.956956956956957,6.946946946946947,6.936936936936937,6.926926926926927,6.916916916916917,6.906906906906907,6.896896896896897,6.886886886886887,6.876876876876877,6.866866866866867,6.856856856856857,6.846846846846847,6.836836836836837,6.826826826826827,6.816816816816817,6.806806806806807,6.796796796796797,6.786786786786787,6.776776776776777,6.766766766766767,6.756756756756757,6.746746746746747,6.736736736736737,6.726726726726727,6.716716716716717,6.706706706706707,6.696696696696697,6.686686686686687,6.676676676676677,6.666666666666667,6.656656656656657,6.646646646646647,6.636636636636637,6.626626626626627,6.616616616616617,6.606606606606607,6.596596596596597,6.586586586586587,6.576576576576577,6.566566566566567,6.556556556556557,6.546546546546547,6.536536536536537,6.526526526526527,6.516516516516517,6.506506506506507,6.496496496496497,6.486486486486487,6.476476476476477,6.466466466466467,6.456456456456457,6.446446446446447,6.436436436436437,6.426426426426427,6.416416416416417,6.406406406406407,6.396396396396397,6.386386386386387,6.376376376376377,6.366366366366367,6.356356356356357,6.346346346346347,6.336336336336337,6.326326326326327,6.316316316316317,6.306306306306307,6.296296296296297,6.286286286286287,6.276276276276277,6.266266266266267,6.256256256256257,6.246246246246246,6.236236236236236,6.226226226226226,6.216216216216216,6.206206206206206,6.196196196196196,6.186186186186186,6.176176176176176,6.166166166166166,6.156156156156156,6.146146146146146,6.136136136136136,6.126126126126126,6.116116116116116,6.106106106106106,6.096096096096096,6.086086086086086,6.076076076076076,6.066066066066066,6.056056056056056,6.046046046046046,6.036036036036036,6.026026026026026,6.016016016016016,6.006006006006006,5.995995995995996,5.985985985985986,5.975975975975976,5.965965965965966,5.955955955955956,5.945945945945946,5.935935935935936,5.925925925925926,5.915915915915916,5.905905905905906,5.895895895895896,5.885885885885886,5.875875875875876,5.865865865865866,5.8558558558558556,5.8458458458458455,5.8358358358358355,5.8258258258258255,5.8158158158158155,5.8058058058058055,5.7957957957957955,5.7857857857857855,5.7757757757757755,5.7657657657657655,5.7557557557557555,5.7457457457457455,5.7357357357357355,5.7257257257257255,5.7157157157157155,5.7057057057057055,5.6956956956956954,5.685685685685685,5.675675675675675,5.665665665665665,5.655655655655655,5.645645645645645,5.635635635635635,5.625625625625625,5.615615615615615,5.605605605605605,5.595595595595595,5.585585585585585,5.575575575575575,5.565565565565565,5.555555555555555,5.545545545545545,5.535535535535535,5.525525525525525,5.515515515515515,5.505505505505505,5.495495495495495,5.485485485485485,5.475475475475475,5.465465465465465,5.455455455455455,5.445445445445445,5.435435435435435,5.425425425425425,5.415415415415415,5.405405405405405,5.395395395395395,5.385385385385385,5.375375375375375,5.365365365365365,5.355355355355355,5.345345345345345,5.335335335335335,5.325325325325325,5.315315315315315,5.305305305305305,5.295295295295295,5.285285285285285,5.275275275275275,5.265265265265265,5.255255255255255,5.245245245245245,5.235235235235235,5.225225225225225,5.215215215215215,5.205205205205205,5.195195195195195,5.185185185185185,5.175175175175175,5.165165165165165,5.155155155155155,5.145145145145145,5.135135135135135,5.125125125125125,5.115115115115115,5.105105105105105,5.095095095095095,5.085085085085085,5.075075075075075,5.065065065065065,5.055055055055055,5.045045045045045,5.035035035035035,5.025025025025025,5.015015015015015,5.005005005005005,4.994994994994995,4.984984984984985,4.974974974974975,4.964964964964965,4.954954954954955,4.944944944944945,4.934934934934935,4.924924924924925,4.914914914914915,4.904904904904905,4.894894894894895,4.884884884884885,4.874874874874875,4.864864864864865,4.854854854854855,4.844844844844845,4.834834834834835,4.824824824824825,4.814814814814815,4.804804804804805,4.794794794794795,4.784784784784785,4.774774774774775,4.764764764764765,4.754754754754755,4.744744744744745,4.734734734734735,4.724724724724725,4.714714714714715,4.704704704704705,4.694694694694695,4.684684684684685,4.674674674674675,4.664664664664665,4.654654654654655,4.644644644644645,4.634634634634635,4.624624624624625,4.614614614614615,4.604604604604605,4.594594594594595,4.584584584584585,4.574574574574575,4.564564564564565,4.554554554554555,4.544544544544545,4.534534534534535,4.524524524524525,4.514514514514515,4.504504504504505,4.494494494494495,4.484484484484485,4.474474474474475,4.464464464464465,4.454454454454455,4.444444444444445,4.434434434434435,4.424424424424425,4.414414414414415,4.404404404404405,4.394394394394395,4.384384384384385,4.374374374374375,4.364364364364365,4.354354354354355,4.344344344344345,4.334334334334335,4.324324324324325,4.314314314314315,4.3043043043043046,4.2942942942942945,4.2842842842842845,4.2742742742742745,4.2642642642642645,4.2542542542542545,4.2442442442442445,4.2342342342342345,4.2242242242242245,4.2142142142142145,4.2042042042042045,4.1941941941941945,4.1841841841841845,4.1741741741741745,4.1641641641641645,4.1541541541541545,4.1441441441441444,4.134134134134134,4.124124124124124,4.114114114114114,4.104104104104104,4.094094094094094,4.084084084084084,4.074074074074074,4.064064064064064,4.054054054054054,4.044044044044044,4.034034034034034,4.024024024024024,4.014014014014014,4.004004004004004,3.993993993993994,3.983983983983984,3.973973973973974,3.963963963963964,3.953953953953954,3.943943943943944,3.933933933933934,3.923923923923924,3.913913913913914,3.903903903903904,3.893893893893894,3.883883883883884,3.873873873873874,3.863863863863864,3.853853853853854,3.843843843843844,3.833833833833834,3.823823823823824,3.813813813813814,3.803803803803804,3.793793793793794,3.7837837837837838,3.7737737737737738,3.7637637637637638,3.7537537537537538,3.7437437437437437,3.7337337337337337,3.7237237237237237,3.7137137137137137,3.7037037037037037,3.6936936936936937,3.6836836836836837,3.6736736736736737,3.6636636636636637,3.6536536536536537,3.6436436436436437,3.6336336336336337,3.6236236236236237,3.6136136136136137,3.6036036036036037,3.5935935935935936,3.5835835835835836,3.5735735735735736,3.5635635635635636,3.5535535535535536,3.5435435435435436,3.5335335335335336,3.5235235235235236,3.5135135135135136,3.5035035035035036,3.4934934934934936,3.4834834834834836,3.4734734734734736,3.4634634634634636,3.4534534534534536,3.4434434434434436,3.4334334334334335,3.4234234234234235,3.4134134134134135,3.4034034034034035,3.3933933933933935,3.3833833833833835,3.3733733733733735,3.3633633633633635,3.3533533533533535,3.3433433433433435,3.3333333333333335,3.3233233233233235,3.3133133133133135,3.3033033033033035,3.2932932932932935,3.2832832832832834,3.2732732732732734,3.2632632632632634,3.2532532532532534,3.2432432432432434,3.2332332332332334,3.2232232232232234,3.2132132132132134,3.2032032032032034,3.1931931931931934,3.1831831831831834,3.1731731731731734,3.1631631631631634,3.1531531531531534,3.1431431431431434,3.1331331331331334,3.123123123123123,3.113113113113113,3.103103103103103,3.093093093093093,3.083083083083083,3.073073073073073,3.063063063063063,3.053053053053053,3.043043043043043,3.033033033033033,3.023023023023023,3.013013013013013,3.003003003003003,2.992992992992993,2.982982982982983,2.972972972972973,2.962962962962963,2.952952952952953,2.942942942942943,2.932932932932933,2.9229229229229228,2.9129129129129128,2.9029029029029028,2.8928928928928928,2.8828828828828827,2.8728728728728727,2.8628628628628627,2.8528528528528527,2.8428428428428427,2.8328328328328327,2.8228228228228227,2.8128128128128127,2.8028028028028027,2.7927927927927927,2.7827827827827827,2.7727727727727727,2.7627627627627627,2.7527527527527527,2.7427427427427427,2.7327327327327327,2.7227227227227226,2.7127127127127126,2.7027027027027026,2.6926926926926926,2.6826826826826826,2.6726726726726726,2.6626626626626626,2.6526526526526526,2.6426426426426426,2.6326326326326326,2.6226226226226226,2.6126126126126126,2.6026026026026026,2.5925925925925926,2.5825825825825826,2.5725725725725725,2.5625625625625625,2.5525525525525525,2.5425425425425425,2.5325325325325325,2.5225225225225225,2.5125125125125125,2.5025025025025025,2.4924924924924925,2.4824824824824825,2.4724724724724725,2.4624624624624625,2.4524524524524525,2.4424424424424425,2.4324324324324325,2.4224224224224224,2.4124124124124124,2.4024024024024024,2.3923923923923924,2.3823823823823824,2.3723723723723724,2.3623623623623624,2.3523523523523524,2.3423423423423424,2.3323323323323324,2.3223223223223224,2.3123123123123124,2.3023023023023024,2.2922922922922924,2.2822822822822824,2.2722722722722724,2.2622622622622623,2.2522522522522523,2.2422422422422423,2.2322322322322323,2.2222222222222223,2.2122122122122123,2.2022022022022023,2.1921921921921923,2.1821821821821823,2.1721721721721723,2.1621621621621623,2.1521521521521523,2.1421421421421423,2.1321321321321323,2.1221221221221223,2.1121121121121122,2.1021021021021022,2.0920920920920922,2.0820820820820822,2.0720720720720722,2.062062062062062,2.052052052052052,2.042042042042042,2.032032032032032,2.022022022022022,2.012012012012012,2.002002002002002,1.991991991991992,1.981981981981982,1.971971971971972,1.961961961961962,1.951951951951952,1.941941941941942,1.931931931931932,1.921921921921922,1.911911911911912,1.901901901901902,1.8918918918918919,1.8818818818818819,1.8718718718718719,1.8618618618618619,1.8518518518518519,1.8418418418418419,1.8318318318318318,1.8218218218218218,1.8118118118118118,1.8018018018018018,1.7917917917917918,1.7817817817817818,1.7717717717717718,1.7617617617617618,1.7517517517517518,1.7417417417417418,1.7317317317317318,1.7217217217217218,1.7117117117117118,1.7017017017017018,1.6916916916916918,1.6816816816816818,1.6716716716716717,1.6616616616616617,1.6516516516516517,1.6416416416416417,1.6316316316316317,1.6216216216216217,1.6116116116116117,1.6016016016016017,1.5915915915915917,1.5815815815815817,1.5715715715715717,1.5615615615615615,1.5515515515515514,1.5415415415415414,1.5315315315315314,1.5215215215215214,1.5115115115115114,1.5015015015015014,1.4914914914914914,1.4814814814814814,1.4714714714714714,1.4614614614614614,1.4514514514514514,1.4414414414414414,1.4314314314314314,1.4214214214214214,1.4114114114114114,1.4014014014014013,1.3913913913913913,1.3813813813813813,1.3713713713713713,1.3613613613613613,1.3513513513513513,1.3413413413413413,1.3313313313313313,1.3213213213213213,1.3113113113113113,1.3013013013013013,1.2912912912912913,1.2812812812812813,1.2712712712712713,1.2612612612612613,1.2512512512512513,1.2412412412412412,1.2312312312312312,1.2212212212212212,1.2112112112112112,1.2012012012012012,1.1911911911911912,1.1811811811811812,1.1711711711711712,1.1611611611611612,1.1511511511511512,1.1411411411411412,1.1311311311311312,1.1211211211211212,1.1111111111111112,1.1011011011011012,1.0910910910910911,1.0810810810810811,1.0710710710710711,1.0610610610610611,1.0510510510510511,1.0410410410410411,1.031031031031031,1.021021021021021,1.011011011011011,1.001001001001001,0.990990990990991,0.980980980980981,0.970970970970971,0.960960960960961,0.950950950950951,0.9409409409409409,0.9309309309309309,0.9209209209209209,0.9109109109109109,0.9009009009009009,0.8908908908908909,0.8808808808808809,0.8708708708708709,0.8608608608608609,0.8508508508508509,0.8408408408408409,0.8308308308308309,0.8208208208208209,0.8108108108108109,0.8008008008008008,0.7907907907907908,0.7807807807807807,0.7707707707707707,0.7607607607607607,0.7507507507507507,0.7407407407407407,0.7307307307307307,0.7207207207207207,0.7107107107107107,0.7007007007007007,0.6906906906906907,0.6806806806806807,0.6706706706706707,0.6606606606606606,0.6506506506506506,0.6406406406406406,0.6306306306306306,0.6206206206206206,0.6106106106106106,0.6006006006006006,0.5905905905905906,0.5805805805805806,0.5705705705705706,0.5605605605605606,0.5505505505505506,0.5405405405405406,0.5305305305305306,0.5205205205205206,0.5105105105105106,0.5005005005005005,0.4904904904904905,0.4804804804804805,0.47047047047047047,0.46046046046046046,0.45045045045045046,0.44044044044044045,0.43043043043043044,0.42042042042042044,0.41041041041041043,0.4004004004004004,0.39039039039039036,0.38038038038038036,0.37037037037037035,0.36036036036036034,0.35035035035035034,0.34034034034034033,0.3303303303303303,0.3203203203203203,0.3103103103103103,0.3003003003003003,0.2902902902902903,0.2802802802802803,0.2702702702702703,0.2602602602602603,0.2502502502502503,0.24024024024024024,0.23023023023023023,0.22022022022022023,0.21021021021021022,0.2002002002002002,0.19019019019019018,0.18018018018018017,0.17017017017017017,0.16016016016016016,0.15015015015015015,0.14014014014014015,0.13013013013013014,0.12012012012012012,0.11011011011011011,0.1001001001001001,0.09009009009009009,0.08008008008008008,0.07007007007007007,0.06006006006006006,0.05005005005005005,0.04004004004004004,0.03003003003003003,0.02002002002002002,0.01001001001001001,0.0]} +{"expected":[0.0,0.006289433316067751,0.01257861783874106,0.018867304784467093,0.025155245389375847,0.03144219091912061,0.03772789267871718,0.04401210202238166,0.05029457036336619,0.05657504918379236,0.06285329004448195,0.06912904459478454,0.0754020645824016,0.08167210186320664,0.08793890841106125,0.09420223632762625,0.10046183785216795,0.1067174653713589,0.11296887142907285,0.11921580873617336,0.12545803018029605,0.13169528883562362,0.13792733797265358,0.14415393106795832,0.15037482181393672,0.15658976412855768,0.16279851216509433,0.16900082032184907,0.17519644325186898,0.18138513587265107,0.18756665337583714,0.19374075123689763,0.19990718522480458,0.20606571141169255,0.2122160861825079,0.21835806624464546,0.2244914086375726,0.2306158707424402,0.23673121029167976,0.24283718537858717,0.24893355446689164,0.25502007640031044,0.26109651041208826,0.2671626161345213,0.27321815360846585,0.2792628832928301,0.2852965660740498,0.29131896327554724,0.29732983666717233,0.30332894847462666,0.3093160613888689,0.31529093857550244,0.3212533436841437,0.32720304085777163,0.33313979474205757,0.3390633704946752,0.3449735337945905,0.3508700508513305,0.35675268841423174,0.3626212137816669,0.3684753948102499,0.3743149999240189,0.3801397981235967,0.38594955899532873,0.3917440527203973,0.3975230500839129,0.4032863224839812,0.4090336419407459,0.414764781105407,0.4204795132692143,0.42617761237243534,0.4318588530132974,0.43752301045690434,0.4431698606441261,0.44879918020046217,0.45441074644487744,0.460004337398611,0.4655797317939571,0.47113670908301786,0.47667504944642747,0.48219453380204774,0.48769494381363454,0.4931760618994744,0.4986376712409915,0.5040795557913247,0.5095015002838732,0.5149032902408127,0.520284711981579,0.5256455526313207,0.5309856001293204,0.5363046432373825,0.5416024715481901,0.5468788754936275,0.5521336463530703,0.5573665762616422,0.5625774582184371,0.5677660860947079,0.5729322546420199,0.5780757595003707,0.5831963972062734,0.5882939652008051,0.5933682618376204,0.5984190863909269,0.6034462390634262,0.6084495209942171,0.6134287342666618,0.6183836819162154,0.6233141679382167,0.6282199972956424,0.6331009759268214,0.6379569107531119,0.6427876096865394,0.647592881637394,0.652372536521791,0.6571263852691885,0.661854239829868,0.666555913182372,0.6712312193409028,0.6758799733626791,0.6805019913552524,0.6850970904837809,0.6896650889782618,0.6942058061407226,0.6987190623523674,0.7032046790806838,0.7076624788865044,0.7120922854310254,0.7164939234827832,0.720867218924585,0.7252119987603973,0.7295280911221884,0.7338153252767277,0.7380735316323389,0.7423025417456093,0.7465021883280519,0.7506723052527243,0.7548127275607989,0.7589232914680889,0.7630038343715273,0.7670541948555988,0.7710742126987248,0.7750637288796016,0.7790225855834912,0.7829506262084631,0.78684769537159,0.7907136389150937,0.7945483039124437,0.7983515386744059,0.8021231927550438,0.8058631169576691,0.809571163340744,0.813247185223733,0.8168910371929055,0.8205025751070875,0.8240816561033644,0.8276281386027312,0.8311418823156936,0.8346227482478173,0.8380705987052265,0.8414852973000502,0.8448667089558178,0.8482146999128023,0.8515291377333113,0.854809891306926,0.8580568308556875,0.8612698279392308,0.864448755459865,0.8675934876676012,0.8707039001651276,0.8737798699127285,0.8768212752331536,0.8798279958164293,0.8827999127246197,0.8857369083965294,0.8886388666523558,0.8915056726982838,0.8943372131310272,0.8971333759423141,0.8998940505233183,0.9026191276690341,0.9053084995825967,0.9079620598795463,0.9105797035920357,0.9131613271729834,0.9157068285001692,0.918216106880274,0.9206890630528631,0.9231255991943124,0.925525618921678,0.9278890272965093,0.9302157308286043,0.9325056374797075,0.9347586566671511,0.936974699267438,0.9391536776197678,0.9412955055295033,0.9434000982715812,0.9454673725938635,0.9474972467204298,0.9494896403548134,0.9514444746831767,0.9533616723774293,0.9552411575982869,0.9570828559982708,0.9588866947246498,0.9606526024223211,0.9623805092366335,0.9640703468161507,0.9657220483153547,0.9673355483972902,0.9689107832361495,0.970447690519797,0.9719462094522336,0.9734062807560027,0.9748278466745343,0.9762108509744296,0.9775552389476861,0.9788609574138615,0.9801279547221766,0.9813561807535595,0.9825455869226277,0.9836961261796101,0.984807753012208,0.9858804234473958,0.98691409505316,0.9879087269401781,0.9888642797634357,0.9897807157237835,0.9906579985694317,0.9914960935973848,0.9922949676548137,0.9930545891403677,0.9937749280054242,0.9944559557552776,0.995097645450266,0.9956999717068377,0.9962629106985544,0.9967864401570343,0.9972705393728327,0.9977151891962615,0.9981203720381463,0.9984860718705224,0.9988122742272691,0.9990989662046814,0.9993461364619809,0.9995537752217638,0.9997218742703887,0.9998504269583004,0.9999394282002937,0.999988874475714,0.9999987638285974,0.9999690958677468,0.9998998717667489,0.9997910942639262,0.9996427676622299,0.9994548978290693,0.9992274921960794,0.9989605597588275,0.9986541110764564,0.9983081582712682,0.9979227150282433,0.9974977965944997,0.9970334197786902,0.9965296029503368,0.9959863660391044,0.9954037305340125,0.9947817194825853,0.9941203574899393,0.9934196707178107,0.9926796868835203,0.991900435258877,0.9910819466690196,0.9902242534911986,0.9893273896534935,0.9883913906334728,0.9874162934567889,0.9864021366957146,0.9853489604676166,0.9842568064333687,0.9831257177957042,0.9819557392975067,0.9807469172200396,0.9794992993811165,0.9782129351332084,0.9768878753614925,0.9755241724818386,0.9741218804387363,0.97268105470316,0.9712017522703762,0.9696840316576876,0.9681279529021187,0.9665335775580414,0.964900968694739,0.9632301908939126,0.9615213102471255,0.959774394353189,0.9579895123154889,0.956166734739251,0.9543061337287488,0.9524077828844514,0.9504717573001115,0.9484981335597952,0.9464869897348525,0.9444384053808289,0.9423524615343186,0.9402292407097589,0.9380688268961658,0.935871305553812,0.9336367636108461,0.9313652894598542,0.9290569729543627,0.926711905405285,0.9243301795773083,0.9219118896852251,0.9194571313902055,0.9169660017960134,0.9144385994451657,0.9118750243150338,0.9092753778138885,0.9066397627768893,0.9039682834620161,0.9012610455459447,0.8985181561198673,0.8957397236852553,0.8929258581495685,0.8900766708219059,0.887192274408604,0.8842727830087778,0.881318312109807,0.8783289785827687,0.875304900677813,0.8722461980194863,0.8691529916019989,0.8660254037844386,0.8628635582859311,0.8596675801807452,0.8564375958933459,0.8531737331933928,0.8498761211906865,0.8465448903300605,0.8431801723862224,0.8397821004585397,0.8363508089657762,0.8328864336407735,0.8293891115250828,0.8258589809635432,0.8222961815988095,0.8187008543658281,0.8150731414862622,0.8114131864628658,0.8077211340738069,0.8039971303669405,0.8002413226540321,0.7964538595049291,0.7926348907416848,0.7887845674326315,0.7849030418864044,0.7809904676459175,0.7770469994822884,0.7730727933887177,0.7690680065743166,0.76503279745789,0.7609673256616675,0.7568717520049918,0.7527462384979546,0.7485909483349906,0.7444060458884189,0.7401916967019436,0.7359480674841032,0.7316753261016784,0.7273736415730485,0.7230431840615094,0.7186841248685382,0.714296636427021,0.7098808922944284,0.7054370671459532,0.7009653367675973,0.6964658780492218,0.6919388689775461,0.6873844886291104,0.682802917163189,0.6781943358146665,0.6735589268868658,0.6688968737443396,0.664208360805614,0.659493573535896,0.6547526984397349,0.6499859230536468,0.6451934359386933,0.640375426673026,0.635532085844384,0.6306636050425573,0.6257701768518058,0.6208519948432437,0.6159092535671795,0.6109421485454231,0.605950876263548,0.600935634163123,0.5958966206338976,0.5908340350059581,0.5857480775418393,0.5806389494286057,0.5755068527698899,0.5703519905779015,0.5651745667653927,0.5599747861375955,0.554752854384117,0.5495089780708061,0.544243364631579,0.5389562223602166,0.5336477604021223,0.5283181887460516,0.5229677182158023,0.5175965604618785,0.5122049279531142,0.5067930339682727,0.5013610925876059,0.49590931868438964,0.4904379279164205,0.4849471367174879,0.4794371622888097,0.47390822259044335,0.4683605363326605,0.46279432296729917,0.45720980267907907,0.4516071963768952,0.44598672568507597,0.4403486129346195,0.4346930811543956,0.42902035406232664,0.4233306560565344,0.41762421220646717,0.41190124824399266,0.4061619905544726,0.40040666616780385,0.39463550274944104,0.38884872859138747,0.3830465726031679,0.3772292643027699,0.37139703380756833,0.365550111825219,0.35968872964453596,0.35381311912633867,0.3479235126942841,0.3420201433256687,0.33610324454221585,0.3301730504008368,0.3242297954843707,0.31827371489230855,0.31230504423148925,0.30632401960678346,0.30033087761175026,0.2943258553192818,0.2883091902722216,0.2822811204739717,0.27624188437907415,0.2701917208837821,0.26413086931660607,0.2580595694288502,0.25197806138512496,0.2458865857538503,0.23978538349773576,0.23367469596425247,0.22755476487608217,0.22142583232155919,0.21528814074509012,0.20914193293756742,0.20298745202676113,0.19682494146770546,0.19065464503306437,0.1844768068034924,0.17829167115797576,0.1720994827641691,0.16590048656871317,0.15969492778754948,0.15348305189621608,0.14726510462014122,0.14104133192491916,0.13481198000658431,0.1285772952818685,0.1223375243784573,0.11609291412523007,0.1098437115425001,0.10359016383223915,0.09733251836830271,0.09107102268664066,0.08480592447550929,0.07853747156566947,0.0722659119205871,0.06599149362662035,0.05971446488320999,0.05343507399305728,0.047153569352305774,0.04087019944071144,0.03458521281181742,0.028298858083117957,0.02201138392622768,0.01572303905704087,0.009434072225896876,0.0031447322077362352,-0.0031447322077362352,-0.009434072225896876,-0.01572303905704087,-0.02201138392622768,-0.028298858083117957,-0.03458521281181742,-0.04087019944071144,-0.047153569352305774,-0.05343507399305728,-0.05971446488320999,-0.06599149362662035,-0.0722659119205871,-0.07853747156566947,-0.08480592447550929,-0.09107102268664066,-0.09733251836830271,-0.10359016383223915,-0.1098437115425001,-0.11609291412523007,-0.1223375243784573,-0.1285772952818685,-0.13481198000658431,-0.14104133192491916,-0.14726510462014122,-0.15348305189621608,-0.15969492778754948,-0.16590048656871317,-0.1720994827641691,-0.17829167115797576,-0.1844768068034924,-0.19065464503306437,-0.19682494146770546,-0.20298745202676113,-0.20914193293756742,-0.21528814074509012,-0.22142583232155919,-0.22755476487608217,-0.23367469596425247,-0.23978538349773576,-0.2458865857538503,-0.25197806138512496,-0.2580595694288502,-0.26413086931660607,-0.2701917208837821,-0.27624188437907415,-0.2822811204739717,-0.2883091902722216,-0.2943258553192818,-0.30033087761175026,-0.30632401960678346,-0.31230504423148925,-0.31827371489230855,-0.3242297954843707,-0.3301730504008368,-0.33610324454221585,-0.3420201433256687,-0.3479235126942841,-0.35381311912633867,-0.35968872964453596,-0.365550111825219,-0.37139703380756833,-0.3772292643027699,-0.3830465726031679,-0.38884872859138747,-0.39463550274944104,-0.40040666616780385,-0.4061619905544726,-0.41190124824399266,-0.41762421220646717,-0.4233306560565344,-0.42902035406232664,-0.4346930811543956,-0.4403486129346195,-0.44598672568507597,-0.4516071963768952,-0.45720980267907907,-0.46279432296729917,-0.4683605363326605,-0.47390822259044335,-0.4794371622888097,-0.4849471367174879,-0.4904379279164205,-0.49590931868438964,-0.5013610925876059,-0.5067930339682727,-0.5122049279531142,-0.5175965604618785,-0.5229677182158023,-0.5283181887460516,-0.5336477604021223,-0.5389562223602166,-0.544243364631579,-0.5495089780708061,-0.554752854384117,-0.5599747861375955,-0.5651745667653927,-0.5703519905779015,-0.5755068527698899,-0.5806389494286057,-0.5857480775418393,-0.5908340350059581,-0.5958966206338976,-0.600935634163123,-0.605950876263548,-0.6109421485454231,-0.6159092535671795,-0.6208519948432437,-0.6257701768518058,-0.6306636050425573,-0.635532085844384,-0.640375426673026,-0.6451934359386933,-0.6499859230536468,-0.6547526984397349,-0.659493573535896,-0.664208360805614,-0.6688968737443396,-0.6735589268868658,-0.6781943358146665,-0.682802917163189,-0.6873844886291104,-0.6919388689775461,-0.6964658780492218,-0.7009653367675973,-0.7054370671459532,-0.7098808922944284,-0.714296636427021,-0.7186841248685382,-0.7230431840615094,-0.7273736415730485,-0.7316753261016784,-0.7359480674841032,-0.7401916967019436,-0.7444060458884189,-0.7485909483349906,-0.7527462384979546,-0.7568717520049918,-0.7609673256616675,-0.76503279745789,-0.7690680065743166,-0.7730727933887177,-0.7770469994822884,-0.7809904676459175,-0.7849030418864044,-0.7887845674326315,-0.7926348907416847,-0.7964538595049291,-0.8002413226540319,-0.8039971303669405,-0.8077211340738066,-0.8114131864628658,-0.8150731414862621,-0.8187008543658281,-0.8222961815988092,-0.8258589809635432,-0.8293891115250825,-0.8328864336407735,-0.836350808965776,-0.8397821004585397,-0.8431801723862222,-0.8465448903300605,-0.8498761211906863,-0.8531737331933928,-0.8564375958933458,-0.8596675801807452,-0.862863558285931,-0.8660254037844386,-0.869152991601999,-0.8722461980194863,-0.8753049006778131,-0.8783289785827687,-0.8813183121098072,-0.8842727830087778,-0.8871922744086042,-0.8900766708219059,-0.8929258581495686,-0.8957397236852553,-0.8985181561198674,-0.9012610455459447,-0.9039682834620162,-0.9066397627768893,-0.9092753778138886,-0.9118750243150338,-0.9144385994451658,-0.9169660017960134,-0.9194571313902055,-0.9219118896852251,-0.9243301795773085,-0.926711905405285,-0.9290569729543628,-0.9313652894598542,-0.9336367636108462,-0.935871305553812,-0.9380688268961659,-0.9402292407097589,-0.9423524615343187,-0.9444384053808289,-0.9464869897348525,-0.9484981335597952,-0.9504717573001116,-0.9524077828844514,-0.9543061337287488,-0.956166734739251,-0.9579895123154889,-0.959774394353189,-0.9615213102471255,-0.9632301908939126,-0.9649009686947391,-0.9665335775580414,-0.9681279529021188,-0.9696840316576876,-0.9712017522703762,-0.9726810547031601,-0.9741218804387363,-0.9755241724818386,-0.9768878753614925,-0.9782129351332085,-0.9794992993811165,-0.9807469172200396,-0.9819557392975066,-0.9831257177957043,-0.9842568064333687,-0.9853489604676164,-0.9864021366957145,-0.9874162934567889,-0.9883913906334728,-0.9893273896534935,-0.9902242534911985,-0.9910819466690197,-0.991900435258877,-0.9926796868835203,-0.9934196707178107,-0.9941203574899393,-0.9947817194825853,-0.9954037305340125,-0.9959863660391043,-0.9965296029503368,-0.9970334197786902,-0.9974977965944997,-0.9979227150282433,-0.9983081582712682,-0.9986541110764564,-0.9989605597588274,-0.9992274921960794,-0.9994548978290693,-0.9996427676622299,-0.9997910942639262,-0.9998998717667489,-0.9999690958677468,-0.9999987638285974,-0.999988874475714,-0.9999394282002937,-0.9998504269583004,-0.9997218742703887,-0.9995537752217639,-0.9993461364619809,-0.9990989662046814,-0.9988122742272691,-0.9984860718705225,-0.9981203720381463,-0.9977151891962615,-0.9972705393728327,-0.9967864401570343,-0.9962629106985544,-0.9956999717068377,-0.995097645450266,-0.9944559557552776,-0.9937749280054242,-0.9930545891403677,-0.9922949676548137,-0.9914960935973848,-0.9906579985694318,-0.9897807157237835,-0.9888642797634357,-0.9879087269401781,-0.9869140950531601,-0.9858804234473958,-0.984807753012208,-0.9836961261796102,-0.9825455869226276,-0.9813561807535595,-0.9801279547221766,-0.9788609574138616,-0.9775552389476861,-0.9762108509744295,-0.9748278466745343,-0.9734062807560028,-0.9719462094522335,-0.970447690519797,-0.9689107832361495,-0.9673355483972903,-0.9657220483153545,-0.9640703468161506,-0.9623805092366335,-0.9606526024223211,-0.9588866947246496,-0.9570828559982708,-0.9552411575982869,-0.9533616723774294,-0.9514444746831765,-0.9494896403548133,-0.9474972467204298,-0.9454673725938635,-0.9434000982715811,-0.9412955055295031,-0.9391536776197678,-0.9369746992674381,-0.9347586566671509,-0.9325056374797074,-0.9302157308286043,-0.9278890272965095,-0.9255256189216778,-0.9231255991943123,-0.9206890630528631,-0.9182161068802741,-0.9157068285001689,-0.9131613271729833,-0.9105797035920357,-0.9079620598795464,-0.9053084995825965,-0.902619127669034,-0.8998940505233183,-0.8971333759423142,-0.8943372131310271,-0.8915056726982838,-0.8886388666523559,-0.8857369083965295,-0.8827999127246194,-0.8798279958164293,-0.8768212752331536,-0.8737798699127287,-0.8707039001651273,-0.8675934876676012,-0.864448755459865,-0.861269827939231,-0.8580568308556873,-0.854809891306926,-0.8515291377333114,-0.8482146999128025,-0.8448667089558176,-0.8414852973000501,-0.8380705987052266,-0.8346227482478176,-0.8311418823156934,-0.8276281386027311,-0.8240816561033645,-0.8205025751070877,-0.8168910371929051,-0.813247185223733,-0.8095711633407441,-0.8058631169576693,-0.8021231927550436,-0.7983515386744059,-0.7945483039124438,-0.790713638915094,-0.7868476953715898,-0.782950626208463,-0.7790225855834912,-0.7750637288796018,-0.7710742126987246,-0.7670541948555987,-0.7630038343715274,-0.7589232914680892,-0.7548127275607986,-0.7506723052527243,-0.7465021883280522,-0.7423025417456096,-0.7380735316323388,-0.7338153252767277,-0.7295280911221885,-0.7252119987603977,-0.7208672189245848,-0.7164939234827832,-0.7120922854310257,-0.7076624788865048,-0.7032046790806837,-0.6987190623523674,-0.6942058061407227,-0.6896650889782623,-0.6850970904837806,-0.6805019913552524,-0.6758799733626792,-0.6712312193409031,-0.6665559131823718,-0.661854239829868,-0.6571263852691888,-0.6523725365217914,-0.6475928816373938,-0.6427876096865394,-0.6379569107531121,-0.6331009759268209,-0.6282199972956422,-0.6233141679382167,-0.6183836819162155,-0.6134287342666614,-0.6084495209942169,-0.6034462390634262,-0.5984190863909271,-0.5933682618376199,-0.5882939652008049,-0.5831963972062734,-0.5780757595003709,-0.5729322546420196,-0.5677660860947077,-0.5625774582184371,-0.5573665762616424,-0.5521336463530698,-0.5468788754936272,-0.5416024715481901,-0.5363046432373827,-0.53098560012932,-0.5256455526313205,-0.520284711981579,-0.5149032902408129,-0.5095015002838728,-0.5040795557913245,-0.49863767124099156,-0.49317606189947466,-0.48769494381363415,-0.4821945338020476,-0.4766750494464275,-0.47113670908301813,-0.46557973179395673,-0.46000433739861085,-0.4544107464448775,-0.4487991802004625,-0.4431698606441257,-0.43752301045690417,-0.43185885301329746,-0.4261776123724356,-0.42047951326921396,-0.4147647811054069,-0.409033641940746,-0.40328632248398155,-0.3975230500839126,-0.3917440527203972,-0.38594955899532885,-0.38013979812359705,-0.3743149999240185,-0.36847539481024977,-0.362621213781667,-0.3567526884142321,-0.35087005085133016,-0.3449735337945904,-0.33906337049467533,-0.3331397947420579,-0.3272030408577713,-0.3212533436841436,-0.3152909385755026,-0.3093160613888693,-0.3033289484746263,-0.2973298366671722,-0.29131896327554735,-0.2852965660740502,-0.2792628832928297,-0.2732181536084658,-0.26716261613452147,-0.26109651041208864,-0.2550200764003101,-0.24893355446689155,-0.2428371853785873,-0.23673121029168015,-0.23061587074243986,-0.22449140863757253,-0.2183580662446456,-0.2122160861825083,-0.20606571141169225,-0.19990718522480452,-0.19374075123689782,-0.18756665337583756,-0.18138513587265076,-0.17519644325186892,-0.16900082032184927,-0.16279851216509478,-0.15658976412855738,-0.15037482181393666,-0.14415393106795849,-0.13792733797265402,-0.13169528883562331,-0.125458030180296,-0.11921580873617356,-0.11296887142907329,-0.10671746537135862,-0.10046183785216792,-0.09420223632762646,-0.08793890841106172,-0.08167210186320636,-0.07540206458240156,-0.06912904459478476,-0.06285329004448242,-0.05657504918379209,-0.050294570363366174,-0.0440121020223819,-0.037727892678717664,-0.031442190919120344,-0.02515524538937584,-0.018867304784467333,-0.01257861783874155,-0.006289433316067501,0.0],"x":[0.0,0.36036036036036034,0.7207207207207207,1.0810810810810811,1.4414414414414414,1.8018018018018018,2.1621621621621623,2.5225225225225225,2.8828828828828827,3.2432432432432434,3.6036036036036037,3.963963963963964,4.324324324324325,4.684684684684685,5.045045045045045,5.405405405405405,5.7657657657657655,6.126126126126126,6.486486486486487,6.846846846846847,7.207207207207207,7.5675675675675675,7.927927927927928,8.288288288288289,8.64864864864865,9.00900900900901,9.36936936936937,9.72972972972973,10.09009009009009,10.45045045045045,10.81081081081081,11.17117117117117,11.531531531531531,11.891891891891891,12.252252252252251,12.612612612612613,12.972972972972974,13.333333333333334,13.693693693693694,14.054054054054054,14.414414414414415,14.774774774774775,15.135135135135135,15.495495495495495,15.855855855855856,16.216216216216218,16.576576576576578,16.936936936936938,17.2972972972973,17.65765765765766,18.01801801801802,18.37837837837838,18.73873873873874,19.0990990990991,19.45945945945946,19.81981981981982,20.18018018018018,20.54054054054054,20.9009009009009,21.26126126126126,21.62162162162162,21.98198198198198,22.34234234234234,22.7027027027027,23.063063063063062,23.423423423423422,23.783783783783782,24.144144144144143,24.504504504504503,24.864864864864863,25.225225225225227,25.585585585585587,25.945945945945947,26.306306306306308,26.666666666666668,27.027027027027028,27.38738738738739,27.74774774774775,28.10810810810811,28.46846846846847,28.82882882882883,29.18918918918919,29.54954954954955,29.90990990990991,30.27027027027027,30.63063063063063,30.99099099099099,31.35135135135135,31.71171171171171,32.072072072072075,32.432432432432435,32.792792792792795,33.153153153153156,33.513513513513516,33.873873873873876,34.234234234234236,34.5945945945946,34.95495495495496,35.31531531531532,35.67567567567568,36.03603603603604,36.3963963963964,36.75675675675676,37.11711711711712,37.47747747747748,37.83783783783784,38.1981981981982,38.55855855855856,38.91891891891892,39.27927927927928,39.63963963963964,40.0,40.36036036036036,40.72072072072072,41.08108108108108,41.44144144144144,41.8018018018018,42.16216216216216,42.52252252252252,42.88288288288288,43.24324324324324,43.6036036036036,43.96396396396396,44.32432432432432,44.68468468468468,45.04504504504504,45.4054054054054,45.765765765765764,46.126126126126124,46.486486486486484,46.846846846846844,47.207207207207205,47.567567567567565,47.927927927927925,48.288288288288285,48.648648648648646,49.009009009009006,49.369369369369366,49.729729729729726,50.090090090090094,50.450450450450454,50.810810810810814,51.171171171171174,51.531531531531535,51.891891891891895,52.252252252252255,52.612612612612615,52.972972972972975,53.333333333333336,53.693693693693696,54.054054054054056,54.414414414414416,54.77477477477478,55.13513513513514,55.4954954954955,55.85585585585586,56.21621621621622,56.57657657657658,56.93693693693694,57.2972972972973,57.65765765765766,58.01801801801802,58.37837837837838,58.73873873873874,59.0990990990991,59.45945945945946,59.81981981981982,60.18018018018018,60.54054054054054,60.9009009009009,61.26126126126126,61.62162162162162,61.98198198198198,62.34234234234234,62.7027027027027,63.06306306306306,63.42342342342342,63.78378378378378,64.14414414414415,64.50450450450451,64.86486486486487,65.22522522522523,65.58558558558559,65.94594594594595,66.30630630630631,66.66666666666667,67.02702702702703,67.38738738738739,67.74774774774775,68.10810810810811,68.46846846846847,68.82882882882883,69.1891891891892,69.54954954954955,69.90990990990991,70.27027027027027,70.63063063063063,70.990990990991,71.35135135135135,71.71171171171171,72.07207207207207,72.43243243243244,72.7927927927928,73.15315315315316,73.51351351351352,73.87387387387388,74.23423423423424,74.5945945945946,74.95495495495496,75.31531531531532,75.67567567567568,76.03603603603604,76.3963963963964,76.75675675675676,77.11711711711712,77.47747747747748,77.83783783783784,78.1981981981982,78.55855855855856,78.91891891891892,79.27927927927928,79.63963963963964,80.0,80.36036036036036,80.72072072072072,81.08108108108108,81.44144144144144,81.8018018018018,82.16216216216216,82.52252252252252,82.88288288288288,83.24324324324324,83.6036036036036,83.96396396396396,84.32432432432432,84.68468468468468,85.04504504504504,85.4054054054054,85.76576576576576,86.12612612612612,86.48648648648648,86.84684684684684,87.2072072072072,87.56756756756756,87.92792792792793,88.28828828828829,88.64864864864865,89.009009009009,89.36936936936937,89.72972972972973,90.09009009009009,90.45045045045045,90.8108108108108,91.17117117117117,91.53153153153153,91.89189189189189,92.25225225225225,92.61261261261261,92.97297297297297,93.33333333333333,93.69369369369369,94.05405405405405,94.41441441441441,94.77477477477477,95.13513513513513,95.49549549549549,95.85585585585585,96.21621621621621,96.57657657657657,96.93693693693693,97.29729729729729,97.65765765765765,98.01801801801801,98.37837837837837,98.73873873873873,99.09909909909909,99.45945945945945,99.81981981981981,100.18018018018019,100.54054054054055,100.90090090090091,101.26126126126127,101.62162162162163,101.98198198198199,102.34234234234235,102.70270270270271,103.06306306306307,103.42342342342343,103.78378378378379,104.14414414414415,104.50450450450451,104.86486486486487,105.22522522522523,105.58558558558559,105.94594594594595,106.30630630630631,106.66666666666667,107.02702702702703,107.38738738738739,107.74774774774775,108.10810810810811,108.46846846846847,108.82882882882883,109.1891891891892,109.54954954954955,109.90990990990991,110.27027027027027,110.63063063063063,110.990990990991,111.35135135135135,111.71171171171171,112.07207207207207,112.43243243243244,112.7927927927928,113.15315315315316,113.51351351351352,113.87387387387388,114.23423423423424,114.5945945945946,114.95495495495496,115.31531531531532,115.67567567567568,116.03603603603604,116.3963963963964,116.75675675675676,117.11711711711712,117.47747747747748,117.83783783783784,118.1981981981982,118.55855855855856,118.91891891891892,119.27927927927928,119.63963963963964,120.0,120.36036036036036,120.72072072072072,121.08108108108108,121.44144144144144,121.8018018018018,122.16216216216216,122.52252252252252,122.88288288288288,123.24324324324324,123.6036036036036,123.96396396396396,124.32432432432432,124.68468468468468,125.04504504504504,125.4054054054054,125.76576576576576,126.12612612612612,126.48648648648648,126.84684684684684,127.2072072072072,127.56756756756756,127.92792792792793,128.2882882882883,128.64864864864865,129.00900900900902,129.36936936936937,129.72972972972974,130.0900900900901,130.45045045045046,130.8108108108108,131.17117117117118,131.53153153153153,131.8918918918919,132.25225225225225,132.61261261261262,132.97297297297297,133.33333333333334,133.6936936936937,134.05405405405406,134.4144144144144,134.77477477477478,135.13513513513513,135.4954954954955,135.85585585585585,136.21621621621622,136.57657657657657,136.93693693693695,137.2972972972973,137.65765765765767,138.018018018018,138.3783783783784,138.73873873873873,139.0990990990991,139.45945945945945,139.81981981981983,140.18018018018017,140.54054054054055,140.9009009009009,141.26126126126127,141.6216216216216,141.981981981982,142.34234234234233,142.7027027027027,143.06306306306305,143.42342342342343,143.78378378378378,144.14414414414415,144.5045045045045,144.86486486486487,145.22522522522522,145.5855855855856,145.94594594594594,146.3063063063063,146.66666666666666,147.02702702702703,147.38738738738738,147.74774774774775,148.1081081081081,148.46846846846847,148.82882882882882,149.1891891891892,149.54954954954954,149.9099099099099,150.27027027027026,150.63063063063063,150.99099099099098,151.35135135135135,151.7117117117117,152.07207207207207,152.43243243243242,152.7927927927928,153.15315315315314,153.51351351351352,153.87387387387386,154.23423423423424,154.59459459459458,154.95495495495496,155.3153153153153,155.67567567567568,156.03603603603602,156.3963963963964,156.75675675675674,157.11711711711712,157.47747747747746,157.83783783783784,158.19819819819818,158.55855855855856,158.9189189189189,159.27927927927928,159.63963963963963,160.0,160.36036036036037,160.72072072072072,161.0810810810811,161.44144144144144,161.80180180180182,162.16216216216216,162.52252252252254,162.88288288288288,163.24324324324326,163.6036036036036,163.96396396396398,164.32432432432432,164.6846846846847,165.04504504504504,165.40540540540542,165.76576576576576,166.12612612612614,166.48648648648648,166.84684684684686,167.2072072072072,167.56756756756758,167.92792792792793,168.2882882882883,168.64864864864865,169.00900900900902,169.36936936936937,169.72972972972974,170.0900900900901,170.45045045045046,170.8108108108108,171.17117117117118,171.53153153153153,171.8918918918919,172.25225225225225,172.61261261261262,172.97297297297297,173.33333333333334,173.6936936936937,174.05405405405406,174.4144144144144,174.77477477477478,175.13513513513513,175.4954954954955,175.85585585585585,176.21621621621622,176.57657657657657,176.93693693693695,177.2972972972973,177.65765765765767,178.018018018018,178.3783783783784,178.73873873873873,179.0990990990991,179.45945945945945,179.81981981981983,180.18018018018017,180.54054054054055,180.9009009009009,181.26126126126127,181.6216216216216,181.981981981982,182.34234234234233,182.7027027027027,183.06306306306305,183.42342342342343,183.78378378378378,184.14414414414415,184.5045045045045,184.86486486486487,185.22522522522522,185.5855855855856,185.94594594594594,186.3063063063063,186.66666666666666,187.02702702702703,187.38738738738738,187.74774774774775,188.1081081081081,188.46846846846847,188.82882882882882,189.1891891891892,189.54954954954954,189.9099099099099,190.27027027027026,190.63063063063063,190.99099099099098,191.35135135135135,191.7117117117117,192.07207207207207,192.43243243243242,192.7927927927928,193.15315315315314,193.51351351351352,193.87387387387386,194.23423423423424,194.59459459459458,194.95495495495496,195.3153153153153,195.67567567567568,196.03603603603602,196.3963963963964,196.75675675675674,197.11711711711712,197.47747747747746,197.83783783783784,198.19819819819818,198.55855855855856,198.9189189189189,199.27927927927928,199.63963963963963,200.0,200.36036036036037,200.72072072072072,201.0810810810811,201.44144144144144,201.80180180180182,202.16216216216216,202.52252252252254,202.88288288288288,203.24324324324326,203.6036036036036,203.96396396396398,204.32432432432432,204.6846846846847,205.04504504504504,205.40540540540542,205.76576576576576,206.12612612612614,206.48648648648648,206.84684684684686,207.2072072072072,207.56756756756758,207.92792792792793,208.2882882882883,208.64864864864865,209.00900900900902,209.36936936936937,209.72972972972974,210.0900900900901,210.45045045045046,210.8108108108108,211.17117117117118,211.53153153153153,211.8918918918919,212.25225225225225,212.61261261261262,212.97297297297297,213.33333333333334,213.6936936936937,214.05405405405406,214.4144144144144,214.77477477477478,215.13513513513513,215.4954954954955,215.85585585585585,216.21621621621622,216.57657657657657,216.93693693693695,217.2972972972973,217.65765765765767,218.018018018018,218.3783783783784,218.73873873873873,219.0990990990991,219.45945945945945,219.81981981981983,220.18018018018017,220.54054054054055,220.9009009009009,221.26126126126127,221.6216216216216,221.981981981982,222.34234234234233,222.7027027027027,223.06306306306305,223.42342342342343,223.78378378378378,224.14414414414415,224.5045045045045,224.86486486486487,225.22522522522522,225.5855855855856,225.94594594594594,226.3063063063063,226.66666666666666,227.02702702702703,227.38738738738738,227.74774774774775,228.1081081081081,228.46846846846847,228.82882882882882,229.1891891891892,229.54954954954954,229.9099099099099,230.27027027027026,230.63063063063063,230.99099099099098,231.35135135135135,231.7117117117117,232.07207207207207,232.43243243243242,232.7927927927928,233.15315315315314,233.51351351351352,233.87387387387386,234.23423423423424,234.59459459459458,234.95495495495496,235.3153153153153,235.67567567567568,236.03603603603602,236.3963963963964,236.75675675675674,237.11711711711712,237.47747747747746,237.83783783783784,238.19819819819818,238.55855855855856,238.9189189189189,239.27927927927928,239.63963963963963,240.0,240.36036036036037,240.72072072072072,241.0810810810811,241.44144144144144,241.80180180180182,242.16216216216216,242.52252252252254,242.88288288288288,243.24324324324326,243.6036036036036,243.96396396396398,244.32432432432432,244.6846846846847,245.04504504504504,245.40540540540542,245.76576576576576,246.12612612612614,246.48648648648648,246.84684684684686,247.2072072072072,247.56756756756758,247.92792792792793,248.2882882882883,248.64864864864865,249.00900900900902,249.36936936936937,249.72972972972974,250.0900900900901,250.45045045045046,250.8108108108108,251.17117117117118,251.53153153153153,251.8918918918919,252.25225225225225,252.61261261261262,252.97297297297297,253.33333333333334,253.6936936936937,254.05405405405406,254.4144144144144,254.77477477477478,255.13513513513513,255.4954954954955,255.85585585585585,256.2162162162162,256.5765765765766,256.93693693693695,257.2972972972973,257.65765765765764,258.01801801801804,258.3783783783784,258.73873873873873,259.0990990990991,259.4594594594595,259.8198198198198,260.1801801801802,260.5405405405405,260.9009009009009,261.26126126126127,261.6216216216216,261.98198198198196,262.34234234234236,262.7027027027027,263.06306306306305,263.4234234234234,263.7837837837838,264.14414414414415,264.5045045045045,264.86486486486484,265.22522522522524,265.5855855855856,265.94594594594594,266.3063063063063,266.6666666666667,267.02702702702703,267.3873873873874,267.7477477477477,268.1081081081081,268.4684684684685,268.8288288288288,269.18918918918916,269.54954954954957,269.9099099099099,270.27027027027026,270.6306306306306,270.990990990991,271.35135135135135,271.7117117117117,272.07207207207205,272.43243243243245,272.7927927927928,273.15315315315314,273.5135135135135,273.8738738738739,274.23423423423424,274.5945945945946,274.9549549549549,275.31531531531533,275.6756756756757,276.036036036036,276.39639639639637,276.7567567567568,277.1171171171171,277.47747747747746,277.8378378378378,278.1981981981982,278.55855855855856,278.9189189189189,279.27927927927925,279.63963963963965,280.0,280.36036036036035,280.72072072072075,281.0810810810811,281.44144144144144,281.8018018018018,282.1621621621622,282.52252252252254,282.8828828828829,283.2432432432432,283.60360360360363,283.963963963964,284.3243243243243,284.68468468468467,285.0450450450451,285.4054054054054,285.76576576576576,286.1261261261261,286.4864864864865,286.84684684684686,287.2072072072072,287.56756756756755,287.92792792792795,288.2882882882883,288.64864864864865,289.009009009009,289.3693693693694,289.72972972972974,290.0900900900901,290.45045045045043,290.81081081081084,291.1711711711712,291.5315315315315,291.8918918918919,292.2522522522523,292.6126126126126,292.97297297297297,293.3333333333333,293.6936936936937,294.05405405405406,294.4144144144144,294.77477477477476,295.13513513513516,295.4954954954955,295.85585585585585,296.2162162162162,296.5765765765766,296.93693693693695,297.2972972972973,297.65765765765764,298.01801801801804,298.3783783783784,298.73873873873873,299.0990990990991,299.4594594594595,299.8198198198198,300.1801801801802,300.5405405405405,300.9009009009009,301.26126126126127,301.6216216216216,301.98198198198196,302.34234234234236,302.7027027027027,303.06306306306305,303.4234234234234,303.7837837837838,304.14414414414415,304.5045045045045,304.86486486486484,305.22522522522524,305.5855855855856,305.94594594594594,306.3063063063063,306.6666666666667,307.02702702702703,307.3873873873874,307.7477477477477,308.1081081081081,308.4684684684685,308.8288288288288,309.18918918918916,309.54954954954957,309.9099099099099,310.27027027027026,310.6306306306306,310.990990990991,311.35135135135135,311.7117117117117,312.07207207207205,312.43243243243245,312.7927927927928,313.15315315315314,313.5135135135135,313.8738738738739,314.23423423423424,314.5945945945946,314.9549549549549,315.31531531531533,315.6756756756757,316.036036036036,316.39639639639637,316.7567567567568,317.1171171171171,317.47747747747746,317.8378378378378,318.1981981981982,318.55855855855856,318.9189189189189,319.27927927927925,319.63963963963965,320.0,320.36036036036035,320.72072072072075,321.0810810810811,321.44144144144144,321.8018018018018,322.1621621621622,322.52252252252254,322.8828828828829,323.2432432432432,323.60360360360363,323.963963963964,324.3243243243243,324.68468468468467,325.0450450450451,325.4054054054054,325.76576576576576,326.1261261261261,326.4864864864865,326.84684684684686,327.2072072072072,327.56756756756755,327.92792792792795,328.2882882882883,328.64864864864865,329.009009009009,329.3693693693694,329.72972972972974,330.0900900900901,330.45045045045043,330.81081081081084,331.1711711711712,331.5315315315315,331.8918918918919,332.2522522522523,332.6126126126126,332.97297297297297,333.3333333333333,333.6936936936937,334.05405405405406,334.4144144144144,334.77477477477476,335.13513513513516,335.4954954954955,335.85585585585585,336.2162162162162,336.5765765765766,336.93693693693695,337.2972972972973,337.65765765765764,338.01801801801804,338.3783783783784,338.73873873873873,339.0990990990991,339.4594594594595,339.8198198198198,340.1801801801802,340.5405405405405,340.9009009009009,341.26126126126127,341.6216216216216,341.98198198198196,342.34234234234236,342.7027027027027,343.06306306306305,343.4234234234234,343.7837837837838,344.14414414414415,344.5045045045045,344.86486486486484,345.22522522522524,345.5855855855856,345.94594594594594,346.3063063063063,346.6666666666667,347.02702702702703,347.3873873873874,347.7477477477477,348.1081081081081,348.4684684684685,348.8288288288288,349.18918918918916,349.54954954954957,349.9099099099099,350.27027027027026,350.6306306306306,350.990990990991,351.35135135135135,351.7117117117117,352.07207207207205,352.43243243243245,352.7927927927928,353.15315315315314,353.5135135135135,353.8738738738739,354.23423423423424,354.5945945945946,354.9549549549549,355.31531531531533,355.6756756756757,356.036036036036,356.39639639639637,356.7567567567568,357.1171171171171,357.47747747747746,357.8378378378378,358.1981981981982,358.55855855855856,358.9189189189189,359.27927927927925,359.63963963963965,360.0]} diff --git a/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/runner.jl b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/runner.jl index 0a32443fdbaf..822d1bcadcce 100755 --- a/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/runner.jl +++ b/lib/node_modules/@stdlib/math/base/special/sind/test/fixtures/julia/runner.jl @@ -62,9 +62,9 @@ file = @__FILE__; dir = dirname( file ); # Generate fixture data for negative values: -x = range( -10.0, stop = 0, length = 1000 ); +x = range( -360.0, stop = 0, length = 1000 ); gen( x, "negative.json" ); # Generate fixture data for positive values: -x = range( 10.0, stop = 0, length = 1000 ); +x = range( 0.0, stop = 360.0, length = 1000 ); gen( x, "positive.json" ); From 09b90be15e03db5a3a548f2eae8dc11b6d2894eb Mon Sep 17 00:00:00 2001 From: Karan Anand Date: Tue, 25 Feb 2025 00:03:43 -0800 Subject: [PATCH 10/11] chore: fix the spacing --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- lib/node_modules/@stdlib/math/base/special/sind/lib/main.js | 4 ++-- lib/node_modules/@stdlib/math/base/special/sind/src/main.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js b/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js index 60a7fb15c099..afc0095efe1d 100644 --- a/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js @@ -77,7 +77,7 @@ function sind( x ) { return kernelSin( xRad, 0.0 ); } if ( arx <= 135.0 ) { - xRad = deg2rad( 90.0 - arx ); + xRad = deg2rad( 90.0-arx ); return signum( rx ) * kernelCos( xRad, 0.0 ); } if ( arx === 180.0 ) { @@ -88,7 +88,7 @@ function sind( x ) { return kernelSin( xRad, 0.0 ); } if ( arx <= 315.0 ) { - xRad = deg2rad( 270.0 - arx ); + xRad = deg2rad( 270.0-arx ); return -signum( rx ) * kernelCos( xRad, 0.0 ); } xRad = deg2rad( rx - ( 360.0*signum( rx ) ) ); diff --git a/lib/node_modules/@stdlib/math/base/special/sind/src/main.c b/lib/node_modules/@stdlib/math/base/special/sind/src/main.c index 2034f2d811ae..1d7680086a1f 100644 --- a/lib/node_modules/@stdlib/math/base/special/sind/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/sind/src/main.c @@ -56,7 +56,7 @@ double stdlib_base_sind( const double x ) { return stdlib_base_kernel_sin( xRad, 0.0 ); } if ( arx <= 135.0 ) { - xRad = stdlib_base_deg2rad( 90.0 - arx ); + xRad = stdlib_base_deg2rad( 90.0-arx ); return stdlib_base_signum( rx ) * stdlib_base_kernel_cos( xRad, 0.0 ); } if ( arx == 180.0 ) { @@ -67,7 +67,7 @@ double stdlib_base_sind( const double x ) { return stdlib_base_kernel_sin( xRad, 0.0 ); } if ( arx <= 315.0 ) { - xRad = stdlib_base_deg2rad( 270.0 - arx ); + xRad = stdlib_base_deg2rad( 270.0-arx ); return -stdlib_base_signum( rx ) * stdlib_base_kernel_cos( xRad, 0.0 ); } xRad = stdlib_base_deg2rad( rx - ( 360.0*stdlib_base_signum( rx ) ) ); From d28e90e59502f62655fdd40c8b4b6896310ae3de Mon Sep 17 00:00:00 2001 From: Karan Anand Date: Sun, 2 Mar 2025 01:20:14 -0800 Subject: [PATCH 11/11] chore: remove xRad for cleaner code --- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na --- --- .../@stdlib/math/base/special/sind/lib/main.js | 16 +++++----------- .../@stdlib/math/base/special/sind/src/main.c | 16 +++++----------- 2 files changed, 10 insertions(+), 22 deletions(-) diff --git a/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js b/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js index afc0095efe1d..e1d424327135 100644 --- a/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/sind/lib/main.js @@ -55,7 +55,6 @@ var isInfinite = require( '@stdlib/math/base/assert/is-infinite' ); * // returns NaN */ function sind( x ) { - var xRad; var arx; var rx; @@ -73,26 +72,21 @@ function sind( x ) { return 0.0; } if ( arx < 45.0 ) { - xRad = deg2rad( rx ); - return kernelSin( xRad, 0.0 ); + return kernelSin( deg2rad( rx ), 0.0 ); } if ( arx <= 135.0 ) { - xRad = deg2rad( 90.0-arx ); - return signum( rx ) * kernelCos( xRad, 0.0 ); + return signum( rx ) * kernelCos( deg2rad( 90.0-arx ), 0.0 ); } if ( arx === 180.0 ) { return signum( rx ) * 0.0; } if ( arx < 225.0 ) { - xRad = deg2rad( ( 180.0-arx ) * signum( rx ) ); - return kernelSin( xRad, 0.0 ); + return kernelSin( deg2rad( ( 180.0-arx )*signum( rx ) ), 0.0 ); } if ( arx <= 315.0 ) { - xRad = deg2rad( 270.0-arx ); - return -signum( rx ) * kernelCos( xRad, 0.0 ); + return -signum( rx ) * kernelCos( deg2rad( 270.0-arx ), 0.0 ); } - xRad = deg2rad( rx - ( 360.0*signum( rx ) ) ); - return kernelSin( xRad, 0.0 ); + return kernelSin( deg2rad( rx-( 360.0*signum( rx ) ) ), 0.0 ); } diff --git a/lib/node_modules/@stdlib/math/base/special/sind/src/main.c b/lib/node_modules/@stdlib/math/base/special/sind/src/main.c index 1d7680086a1f..ddbf0b69a657 100644 --- a/lib/node_modules/@stdlib/math/base/special/sind/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/sind/src/main.c @@ -37,7 +37,6 @@ * // returns 0.0 */ double stdlib_base_sind( const double x ) { - double xRad; double arx; double rx; @@ -52,24 +51,19 @@ double stdlib_base_sind( const double x ) { return 0.0; } if ( arx < 45.0 ) { - xRad = stdlib_base_deg2rad( rx ); - return stdlib_base_kernel_sin( xRad, 0.0 ); + return stdlib_base_kernel_sin( stdlib_base_deg2rad( rx ), 0.0 ); } if ( arx <= 135.0 ) { - xRad = stdlib_base_deg2rad( 90.0-arx ); - return stdlib_base_signum( rx ) * stdlib_base_kernel_cos( xRad, 0.0 ); + return stdlib_base_signum( rx ) * stdlib_base_kernel_cos( stdlib_base_deg2rad( 90.0-arx ), 0.0 ); } if ( arx == 180.0 ) { return stdlib_base_signum( rx ) * 0.0; } if ( arx < 225.0 ) { - xRad = stdlib_base_deg2rad( ( 180.0-arx ) * stdlib_base_signum( rx ) ); - return stdlib_base_kernel_sin( xRad, 0.0 ); + return stdlib_base_kernel_sin( stdlib_base_deg2rad( ( 180.0-arx )*stdlib_base_signum( rx ) ), 0.0 ); } if ( arx <= 315.0 ) { - xRad = stdlib_base_deg2rad( 270.0-arx ); - return -stdlib_base_signum( rx ) * stdlib_base_kernel_cos( xRad, 0.0 ); + return -stdlib_base_signum( rx ) * stdlib_base_kernel_cos( stdlib_base_deg2rad( 270.0-arx ), 0.0 ); } - xRad = stdlib_base_deg2rad( rx - ( 360.0*stdlib_base_signum( rx ) ) ); - return stdlib_base_kernel_sin( xRad, 0.0 ); + return stdlib_base_kernel_sin( stdlib_base_deg2rad( rx-( 360.0*stdlib_base_signum( rx ) ) ), 0.0 ); }