visualization of the 2-D grid world in MATLAB?

Hi,
have an Env matrix given below and ı have an agent walking inside of this enviroment. I want to visualize this environment like given below and want to see all of the steps like red circles.
Env = [ -1 -1 -1 -1 -1
-1 -1 -1 -1 -1
-1 -1 -10 1 -10
-1 -1 -10 -1 -1
-1 -1 -1 -1 100];

Answers (1)

yes as suggested by Darova, use patch function in combination with createGridWorld function to get your custom visualisation.

Categories

Find more on Programming in Help Center and File Exchange

Asked:

on 25 May 2020

Answered:

on 24 Dec 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!