Post Reply 
(33s) Implementation of NOT Function
09-03-2022, 04:07 AM (This post was last modified: 09-23-2022 08:31 AM by Gerald H.)
Post: #2
RE: (33s) Implementation of NOT Function
YES!

But not good for small values, eg input of 0.00000001.

Code:
1.    LBL N
2.    COS
3.    IP
4.    RTN

N: LN = 12

But fastest is

Code:
1.    LBL N
2.    SGN
3.    ABS
4.    STO H
5.    CLx
6.    1
7.    RCL- H
8.    RTN

N: LN = 36
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: (33s) Implementation of NOT Function - Gerald H - 09-03-2022 04:07 AM



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