Post Reply 
Summation based benchmark for calculators
01-09-2018, 10:53 PM
Post: #66
RE: Summation based benchmark for calculators
Sharp EL-5120 Solver
With 100 iteration it runs for approx. 36 seconds, giving a result of 139.297187 (all digits correct according to my HP Prime).
It lacks proper loop instructions, so I used a manual counter with a IF ... GOTO instruction
Code:

X1 = 1
A1 = 0
LABEL A
A1 = A1 + 3 <x-root-of>(e^(sin(atan(X1))))
X1 = X1 + 1
IF X1 <= 100 GOTO A
PRINT A1

Software Failure: Guru Meditation

--
Antonio
IU2KIY
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: Summation based benchmark for calculators - TheKaneB - 01-09-2018 10:53 PM



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