Hi all,
I need to present a table which is about the size of 10x4. Each cell is unknown, I would like the program to automatically catch really large numbers and display it as "Inf" or something of the sort.
Say if I define "really large" to be > 1,000,000. And with a 3x3 table example:
X, Y, Z
-1, 1, 3
-100,2,5
3,7,99999999
When printed it will display as
X, Y, Z
-1, 1, 3
-100, 2, 5
3, 7, Inf
Thank you all.