Converting data to a specified range

  • Thread starter Thread starter Ronni
  • Start date Start date
  • Tags Tags
    Data Range
AI Thread Summary
To convert data from a range of -50000 to 26214400 to a specified range of 0-10, first adjust the data by subtracting 50000, resulting in a new range of 0 to 26164400. Normalize this adjusted data by dividing each value by 26164400 to scale it to a range of 0-1. To further convert this to a range of 0-10, multiply the normalized values by 10. However, the original poster notes that the intervals for the conversion are irregular, which complicates the process. The discussion highlights the need for a method to handle these irregular intervals effectively.
Ronni
Messages
9
Reaction score
0
Hi,

I am trying to convert data to a particular range of 0-10.

Actual Data may vary from - 50000 - 26214400. I have broken this down into 4 parts as follows -

Code:
50000 - 1048576 -----> 0 - 2.5
1048577 - 5242880 -----> 2.6 - 5
5242881 - 15728640 ----->5.1 - 7.5
15728641 - 26214400 ----->7.6 - 10


How can i convert this data ? Is there any formula to do this? I found a way to normalize data to a range of [ 0 - 1 ] but am not able to apply the same to this.
 
Mathematics news on Phys.org
Your numbers range from 50000 to 26214400? (I'm no certain if that is a dash or a negative in front of the "5000".

First subtract 50000 from each of your numbers to get them between 0 and 26214400- 50000= 26164400.
If you now divide each of your numbers by 26164400 they will be between 0 and 1. Is that what you say you can do? To get them between 0 and 10, now multiply by 10 which is the same as having divided by 2616440 instead of 26164400.
 
That is a dash.
This converting of whole data to a range of 0-10 is ok but the intervals are irregular that's why i divided the data into the mentioned intervals.
 
Seemingly by some mathematical coincidence, a hexagon of sides 2,2,7,7, 11, and 11 can be inscribed in a circle of radius 7. The other day I saw a math problem on line, which they said came from a Polish Olympiad, where you compute the length x of the 3rd side which is the same as the radius, so that the sides of length 2,x, and 11 are inscribed on the arc of a semi-circle. The law of cosines applied twice gives the answer for x of exactly 7, but the arithmetic is so complex that the...
Back
Top