Click here to Skip to main content
Licence CPOL
First Posted 30 Jun 2008
Views 8,550
Downloads 79
Bookmarked 8 times

generate random numbers

By | 30 Jun 2008 | Article
Easy way to generate random real (float) or integer numbers
csRandom_source

Introduction

The main idea for this article is how to create random floating numbers in .NET. Before few days i faced problem for generating random real numbers for Stock markets and i searched for a code in CodeProject but i didn't found useful way for this problem.

RandomFloat Class

The RandomFloat class contains properties that allow user to generate random real-integer numbers between specific range and flag to turn on/off real number generator.

Using the code

Turn on or off the real number generator by set the AllowFloating property to true or false, then call the override method NextDouble()

    public class RandomFloat : Random
    {
        protected const int DEFAULT_MIN_VAL = 1;
        protected const int DEFAULT_MAX_VAL = 10;

        protected bool m_bAllowFloat;
        protected int m_iMinVal = DEFAULT_MIN_VAL;
        protected int m_iMaxVal = DEFAULT_MAX_VAL;

        public RandomFloat()
        {
        }

        public RandomFloat(bool bAllowFloat)
        {
            m_bAllowFloat = bAllowFloat;
        }

        public bool AllowFloating
        {
            get
            {
                return m_bAllowFloat;
            }
            set
            {
                m_bAllowFloat = value;
            }
        }

        public int MinRange
        {
            get
            {
                return m_iMinVal;
            }
            set
            {
                m_iMinVal = value;
            }
        }

        public int MaxRange
        {
            get
            {
                return m_iMaxVal;
            }
            set
            {
                m_iMaxVal = value;
            }
        }

        public override double NextDouble()
        {
            int iRnd = Next(m_iMinVal, m_iMaxVal);
            double fRnd = base.NextDouble();

            if (m_bAllowFloat)
            {
                if (iRnd < 0)
                    fRnd = iRnd + (fRnd * -1);
                else
                    fRnd += iRnd;
            }
            else
                fRnd = iRnd;

            if (fRnd > m_iMaxVal)
                fRnd = m_iMaxVal;

            return fRnd;
        }
    }

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Mohannad Abu Sall

Software Developer (Senior)
Optimiza
Jordan Jordan

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralGenerate random numbers PinmemberAnithaJoseph851:38 29 Apr '09  
GeneralComputers can't create true random numbers Pinmemberseesharper21:35 30 Jun '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 30 Jun 2008
Article Copyright 2008 by Mohannad Abu Sall
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid