Post Reply 
Summation based benchmark for calculators
09-10-2023, 03:03 PM
Post: #245
RE: Summation based benchmark for calculators
(12-22-2017 09:41 PM)pier4r Wrote:  So as said the summation based test will be very similar to the savage benchmark and I wonder how many similar tests were developed on various forum or groups regarding calculators.

Anyway, inspired by the test done in the thread of Eddie linked in the 1st post, I decided to pick randomly some scientific functions to assemble a summation that may give an idea of the performances of a calculator for common math functions.

Your results show
~ 18s - fx9860GIII , micropython result has reduced precision p#199

When I run the following on my fx9860GIII with OS version 3.70.0200, I get < 7 seconds.
I really wish it had an RTC. My reflexes aren't that great!

Code:
from math import *
s=0
for x in range(1,1001):
  s+=(exp(sin(atan(x))))**(1/3)
print(s)

1395.346287743426

Tom L
Cui bono?
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Summation based benchmark for calculators - toml_12953 - 09-10-2023 03:03 PM



User(s) browsing this thread: 1 Guest(s)