function a = myAxes(axesProps)
arguments
axesProps.XLim (1,2) {mustBeNumeric}
axesProps.Color string {mustBeMember(axesProps.Color,["red","green","blue"])}
axesProps.Box matlab.lang.OnOffSwitchStateend
nvCell = namedargs2cell(axesProps);
a = axes(nvCell{:});
end