|
|
Features
- Reverse Polish Notation order.
- FIFO stack for 5 operands.
- Autoadjust to all screen sizes.
- Adjustable mantissa precision (up to 22 decimal digit - equivalent 74 bits)
- Basic arithmetic operations, transcendental functions such as sines, logarithms
and powers.
Powered by my own j2me library for floating point calculations with adjustable precision
(mantissa precision limited only JVM perfomance and memory size).
| 128*128 Nokia 5100, 6610, 6100, 7210, 7250 etc |
176*208 Nokia 3650, 3660, 7650, 6600 etc |
 |
 |
How calculate
Example of (a-b)/(c-d*e) calculation:
- Enter number a
- Put number a to stack *, 0
- Enter number b
- Calculate (a-b) #, 2
- Put result (a-b) to stack *, 0
- Enter number c
- Put number c to stack *, 0
- Enter number d
- Put number d to stack *, 0
- Enter number e
- Calculate d*e #, 3
- Calculate c-d*e #, 2
- Calculate (a-b)/(c-d*e) #, 4
|
|