Create a reinforcement learning environment by supplying custom dynamic functions in MATLAB®. Using rlFunctionEnv
, you can create a MATLAB reinforcement learning environment from an observation specification, action specification, and step
and reset
functions that you define.
For this example, create an environment that represents a system for balancing a cart on a pole. The observations from the environment are the cart position, cart velocity, pendulum angle, and pendulum angle derivative. (For additional details about this environment, see Create MATLAB Environment Using Custom Functions.) Create an observation specification for those signals.
The environment has a discrete action space where the agent can apply one of two possible force values to the cart, –10 N or 10 N. Create the action specification for those actions.
Next, specify the custom step
and reset
functions. For this example, use the supplied functions myResetFunction.m
and myStepFunction.m
. For details about these functions and how they are constructed, see Create MATLAB Environment Using Custom Functions.
Construct the custom environment using the defined observation specification, action specification, and function names.
You can create agents for env
and train them within the environment as you would for any other reinforcement learning environment.
As an alternative to using function names, you can specify the functions as function handles. For more details and an example, see Create MATLAB Environment Using Custom Functions.