I would like to create a figure, and once subplots have been created, I would like to apply properties to all of them simultaneously, without going through a for-loop. In fact, I would like to do all the following without having the need to go through a for-loop:
- Create all subplots without a for-loop. (For example, create a figure with 4x5 subplots, not using a for-loop).
- Apply the same background color to each subplot w/o a foor-loop.
- Apply the same axis command to all of them w/o a for-loop. (Like axis equal, axis tight, etc).
Is there a way to do this?