JuliaPOMDP / POMDPs.jl

MDPs and POMDPs in Julia - An interface for defining, solving, and simulating fully and partially observable Markov decision processes on discrete and continuous spaces.
http://juliapomdp.github.io/POMDPs.jl/latest/
Other
662 stars 100 forks source link

return only one dimension in multidimensional observation? #377

Closed doweichert closed 2 years ago

doweichert commented 2 years ago

Hej,

I just found your julia package and it looks great.

Anyway, I've got a short question. I've got a problem in a, say, two dimensional space and two actions that lead to observations only for one of the dimensions. To express it generator-like with (x, y)-tuples for actions a_1 and a_2:

((s'_x, s'_y), (o_x, ??), r) = G((s_x, s_y), a_1) ((s'_x, s'_y), (??, o_y), r) = G((s_x, s_y), a_2)

How can I express this best using the framework?

Thanks for your help. Dorina