Write a function that accepts name-value pairs for specific axes object properties and impose additional restrictions on those property values.
Convert a name-value structure to a cell array containing interleaved names and values. Pass the cell array to the axes
function, which accepts name-value pairs in a cell array. Return the handle to the axes object.
The output of the namedarg2cell
function converts the axesProps
name-value structure defined in the arguments
block to an interleaved cell array of names and values. Pass the nvCell
cell array to the axes function, which accepts name-value pairs as a cell array.