Hi, I have an issue regarding normalization. I have two state variables x1(range is 0.015<=x1<=0.03) and x2(range is 0<=x2<=1100) which form the state and I have discretized each of the state variables into 8 levels so that I can make 64(=8^2) state grids and stored it. Suppose if I obtained a resulting state as (x1,x2) = (0.03,800) and I have to select the nearest stored state grid point(out of 64 grids) I can use the simple method of Euclidean Norm which finds the shortest distance Euclidean Norm
|dist| = sqrt( (x1 - x1 value from the grid)^2 + (x2 - x2 from the grid)^2 )
Now, the actual problem is, as both x1 and x2 affect the state equally and the range of x2 is bigger (range is 0<=x2<=1100) than that of x1 (range is 0.015<=x1<=0.03), if I directly calculate the distance, x2 will dominate and x1 won't make much difference. So I understood that I need to normalize them. When I normalize them, I'd like to normalize them so that their effect is almost identical. I have least knowledge about normalization. Can anyone please assist me in doing that? Also is there any factors to consider while normalizing such as out of range values, etc
Thanks in advance for your time and consideration