× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.


  • Subject: RE: Controlling ('rand') random number upper limit
  • From: Joel Fritz <JFritz@xxxxxxxxxxxxxxxx>
  • Date: Mon, 18 Jun 2001 18:27:24 -0700

in rpg if you prototype rand() as rand,

eval randomnumber = %rem(rand : high - low + 1) + low 

It's probably about the same amount of machine work, but it saves you having
to hard code anything.  It will only work for sure if the high and low
values are both signed integers (the data type of rand()) or you check for
overflow on the size of the range.
 

> -----Original Message-----
> From: Paul Jackson [mailto:paulgjackson@yahoo.com]
> Sent: Monday, June 18, 2001 4:47 PM
> To: RPG400-L@midrange.com
> Subject: Re: Controlling ('rand') random number upper limit
> 
> 
> Thanks to all who replied.
> 
> I finally got the algorithm for returning a random
> number within a specified range (lo,hi).
> 
> FinalRandomNbr = ((NbrFromRandFunc / 32768) *
> ((HiRange - LoRange) + 1)) + LoRange
> 
> NbrFromRandFunc is an integer in the range 0 thru
> 32767 inclusive.
> It is divided by 32768 to return a number between 0
> and 1.
> The result is multipied by the total number of
> different values possible and LoRange is added to bump
> it into the correct range.
> 
> If there is an easier way of doing it please let me
> know.
> 
> -Paul
+---
| This is the RPG/400 Mailing List!
| To submit a new message, send your mail to RPG400-L@midrange.com.
| To subscribe to this list send email to RPG400-L-SUB@midrange.com.
| To unsubscribe from this list send email to RPG400-L-UNSUB@midrange.com.
| Questions should be directed to the list owner/operator: david@midrange.com
+---

As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.