Python Forum
Scaling random numbers within specific range
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Scaling random numbers within specific range
#1
How would one scale some random numbers within a specific range in Python, say [0,pi]? Would simply fmod(random_number/pi) do it?
Reply
#2
If you have random numbers on a range (0, 1), multiplying them by n puts them on a range from (0, n).
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply
#3
Say the random numbers are not explicitly given, i.e. we don't know in which interval they're in. How would one work around that?
Reply
#4
Generate a bunch of them and estimate the interval?
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply
#5
Depends on the application. Can you get all the random numbers into a list and then see the min and max? I take it you are not generating the random numbers but receiving them for analysis?
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Random Generator: From Word to Numbers, from Numbers to n possibles Words Yamiyozx 2 1,430 Jan-02-2023, 05:08 PM
Last Post: deanhystad
  Convert list of numbers to string of numbers kam_uk 5 3,025 Nov-21-2020, 03:10 PM
Last Post: deanhystad
  quiver plot scaling help StillAnotherDave 1 1,753 Oct-26-2020, 09:17 AM
Last Post: StillAnotherDave
  How to Generate and Print An Array with Random Numbers in Python in the johnnynitro99293 14 9,648 Sep-20-2019, 11:56 AM
Last Post: ichabod801
  Scaling elements of marix. pawlo392 1 2,177 May-16-2019, 11:37 PM
Last Post: michalmonday
  WaveCopy and Amplitude Scaling kgbprod 3 3,448 Apr-24-2019, 05:49 PM
Last Post: kgbprod
  python homework print the sum of a range of numbers from x to y kirito85 3 3,269 Oct-28-2018, 08:56 AM
Last Post: kirito85
  random numbers and stats cliffhop23 2 6,924 Feb-22-2018, 09:16 PM
Last Post: glidecode
  Regular Expressions in Files (find all phone numbers and credit card numbers) Amirsalar 2 4,115 Dec-05-2017, 09:48 AM
Last Post: DeaD_EyE
  NEED HELP Pseudo-Random Numbers Kongurinn 9 5,471 Oct-23-2017, 04:17 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020