Post Reply 
Summation based benchmark for calculators
03-20-2021, 01:44 AM (This post was last modified: 03-20-2021 01:45 AM by Xorand.)
Post: #205
RE: Summation based benchmark for calculators
Some more TI nspire CX II CAS results.
Hardware version M-0720AK (2020), OS 5.2.0.771 (2020)

Using the sum function in approx. mode, I got the same results as an earlier poster for 100,000 iterations:

Sum function, approx. mode - ~95 sec., 139561.

Using the built-in python for 100,000 iterations:

python script - ~19.5 sec., 139560.9761410522

Code:
from math import *
def RunTest(n):
  x=0
  for i in range(1,n+1):
    x=x+pow(exp(sin(atan(i))),1/3)
  print(x)
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Summation based benchmark for calculators - Xorand - 03-20-2021 01:44 AM



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