> 1+rand(100) will give you a range of 1-100 (it will never show as 0%) > rand(101) will give you a range of 0-100 (0% is possible)
I don't know what your actually trying to accomplish, but it doesn't seem to me that simply generating random numbers between 0 and 100 would be a very realistic test of CPU load. Load on a CPU wouldn't look like random noise. I think I would generate random numbers that add to another value in small increments in some form of moving average to produce a more realistic result. But, this depends on if you care about the value over time, or just need an instance in time value. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

