I have a function for the calculation of the perimeter of an ellipse based on the inputs a and b. So far tested, it act similar to testing tools in the internet; example https://www.mathsisfun.com/geometry/ellipse-perimeter.html#tool
Has anybody some numerical precise examples of ellipse (perimeter, a and b) where the precision is quite high? (at least the first 10 digits after "," should be "correct" or should have been calculated with high and long computational power).
I will make a python script on a 64bit PC later then compare the data I will receive from here, from where the data diverge after the ",".
Example
a= 0.1234567890123456 b= 2.345678901234567 Perimeter = 9.4xxxxxxxxxxxxx
After I will use my python script, I will numerically evaluate my result on my 64bit PC and the Perimeter above. (I have not started the mathematical proof phase of the precision of the function; I just want to have few numerical examples to "quick and dirty" check my function before I spend the next days working).