Hi i have two scales, i getting a number (doing computer programming)
say 3.75 and i need to find that number on the other scale. Here are the two scales and how they match up:
scale1: 0-8-15-22-48-60-73-87-100-114-128
scale2: 0-1-2-3-4-5-6-7-8-9-10
so i have a number in scale 1, as mentioned: 3.75
I need to know the number (decimals included) of what that number is on scale1 :?:
In the progam i'm creating I've given a number ranging from 1 to 10, and that number can have a tenth decimal placing with it.
So i need to conver it to scale 1, i have not found a pattern in scale1 to apply as a general formula, so i'm doing this the long way
i trying to find formulas for each sub range of scale2, sub range meaning 0 to 1 formula, 1 to 2 formula, 2 to 3 formula, etc.
I someone does find a pattern in the scale1, Wow on then, they are truly smarty pants!
What i'm doing so far:
For the direct relation its easy (0=0,1=8,2=15,etc..)
For the not direct realtion i getting the math floor of that value (rounding down) then i know what forumula to use to convert it over to scale1. So far i have:
if number between 0-1 times it by 8.
between 1 and 2, times by 8 and minus (the decimals places of the given number)
so far i have a forumla for number that range from 0 to 1 and number that range from 1 to 2. I'm stuck on numbers that range from 2 to 3, 3 to 4, 4-5, 5-6, and 6 to 7.
I would really appreciate if someone could either point me in a simplier direction on the wholescale matching or on the indiviual formulas to match the two scales.
Thanks!
say 3.75 and i need to find that number on the other scale. Here are the two scales and how they match up:
scale1: 0-8-15-22-48-60-73-87-100-114-128
scale2: 0-1-2-3-4-5-6-7-8-9-10
so i have a number in scale 1, as mentioned: 3.75
I need to know the number (decimals included) of what that number is on scale1 :?:
In the progam i'm creating I've given a number ranging from 1 to 10, and that number can have a tenth decimal placing with it.
So i need to conver it to scale 1, i have not found a pattern in scale1 to apply as a general formula, so i'm doing this the long way
i trying to find formulas for each sub range of scale2, sub range meaning 0 to 1 formula, 1 to 2 formula, 2 to 3 formula, etc.
I someone does find a pattern in the scale1, Wow on then, they are truly smarty pants!
What i'm doing so far:
For the direct relation its easy (0=0,1=8,2=15,etc..)
For the not direct realtion i getting the math floor of that value (rounding down) then i know what forumula to use to convert it over to scale1. So far i have:
if number between 0-1 times it by 8.
between 1 and 2, times by 8 and minus (the decimals places of the given number)
so far i have a forumla for number that range from 0 to 1 and number that range from 1 to 2. I'm stuck on numbers that range from 2 to 3, 3 to 4, 4-5, 5-6, and 6 to 7.
I would really appreciate if someone could either point me in a simplier direction on the wholescale matching or on the indiviual formulas to match the two scales.
Thanks!