Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!zaphod.mps.ohio-state.edu!magnus.ircc.ohio-state.edu!news From: fseipel@hpuxa.ircc.ohio-state.edu (Frank E. Seipel) Newsgroups: comp.sys.handhelds Subject: Exponential Notation Message-ID: <1990Dec5.043624.21485@magnus.ircc.ohio-state.edu> Date: 5 Dec 90 04:36:24 GMT Sender: news@magnus.ircc.ohio-state.edu Organization: The Ohio State University (IRCC) Lines: 11 Originator: fseipel@hpuxa.ircc.ohio-state.edu Nntp-Posting-Host: hpuxa.ircc.ohio-state.edu I find I am dissatisfied with all of the HP's modes for displaying numbers. I use standard mode, but dislike the way very small and very large numbers are not displayed in scientific notation, so I wrote the following: << DUP DUP MANT ->STR "E" + SWAP XPON ->STR + SWAP >> save this as XPONE and assign it to the orange-shift EEX key. (i.e., {Xpone 53.2} STOK ). Thus you will type left shift EEX to convert the real number in level 1 into exponential notation. The result will be placed on level 2, in a string; the number will remain on level 1.