IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Display the exponential numbers in normal form


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
bipinpeter

Active User


Joined: 18 Jun 2007
Posts: 213
Location: Cochin/Kerala/India

PostPosted: Tue Jan 19, 2016 6:28 pm
Reply with quote

Hi All,

I am trying to find exponential of number and writing to the file using REXX.

But am getting output with exponential format.

For eg: for 2** 32, the data is coming as 4.2949673E+9

Is any function is there to display it in normal form?

Regards,
Bipin Peter
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Tue Jan 19, 2016 7:01 pm
Reply with quote

Use NUMERIC DIGITS to set a maximum number of digits not less than the digits left of the decimal point and not less than half the number of digits to the right of the decimal point of your longest numeric string(s). Depending on how you're using the number(s), you may also have to change NUMERIC FUZZ.
Back to top
View user's profile Send private message
Bill Woodger

Moderator Emeritus


Joined: 09 Mar 2011
Posts: 7309
Location: Inside the Matrix

PostPosted: Tue Jan 19, 2016 7:03 pm
Reply with quote

You mean you want to have 2**32 in your output? You don't want it interpreted as a number? You did put quotes around it? Can you show your code?
Back to top
View user's profile Send private message
prino

Senior Member


Joined: 07 Feb 2009
Posts: 1306
Location: Vilnius, Lithuania

PostPosted: Wed Jan 20, 2016 12:04 am
Reply with quote

This
Code:
/* REXX */
numeric digits 50
say 'Expression: 2**166'
say 'Result    :' 2**166

results in this when EX'ed:
Code:
Expression: 2**166
Result    : 93536104789177786765035829293842113257979682750464
Back to top
View user's profile Send private message
Marso

REXX Moderator


Joined: 13 Mar 2006
Posts: 1353
Location: Israel

PostPosted: Wed Jan 20, 2016 9:31 pm
Reply with quote

bipinpeter wrote:
I am trying to find exponential of number ... But am getting output with exponential format.

You have to be clear about what you have, what you get and what you want!
All I can understand is that you want exponential format but instead you get exponential format...
icon_rolleyes.gif
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts Generate random number from range of ... COBOL Programming 3
No new posts Return codes-Normal & Abnormal te... JCL & VSAM 7
No new posts To Remove spaces (which is in hex for... JCL & VSAM 10
No new posts How to display the leading zeros of a... DB2 7
Search our Forums:

Back to Top