This is apparently very obvious and basic, because I can't find any tutorials on it, but how do I set up a state space for a q-learning environment?
If I understand correctly, every state needs to be associated with a single value, right? If so, what do I do if I have more than one input variable? In essence;
stateSpace = ???
Once I do have a state space, how do I change a state? Say it's based on 3 variables, V1 V2 and V3. The q-learning algorithm only receives a single-number representation of this state, right? How do I use the variables and state space to return a single value representing a state?
I'm sorry if this is obvious/basic, thank you for your time.