Post Reply 
Scientific Notation
02-13-2014, 06:12 PM
Post: #5
RE: Scientific Notation
You can create a short toggle program and assign it to a convenient key.

Here is an example, from tips I found here in the forums.

Code:
// Toggle btwn Standard and Scientific-4 Display format
// Assigned to Sin key for demo purposes
KEY K_Sin()
BEGIN
 IF HFormat == 0  
  THEN HFormat:=2; HDigits:=4
  ELSE HFormat:=0;
 END;
//Trick to refresh screen - Great tip from Terje Vallestad 
STARTVIEW(−8,1);
STARTVIEW(−1,1); 
END;

--Bob Prosperi
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Scientific Notation - BruceTTT - 02-13-2014, 01:16 AM
RE: Scientific Notation - CR Haeger - 02-13-2014, 02:17 AM
RE: Scientific Notation - rprosperi - 02-13-2014, 03:28 AM
RE: Scientific Notation - BruceTTT - 02-13-2014, 04:46 AM
RE: Scientific Notation - rprosperi - 02-13-2014 06:12 PM
RE: Scientific Notation - Terje Vallestad - 02-22-2014, 01:58 PM
RE: Scientific Notation - BruceTTT - 02-14-2014, 04:52 AM
RE: Scientific Notation - massimo - 02-14-2014, 04:16 PM
RE: Scientific Notation - JimS - 02-23-2014, 11:09 PM



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