# doc-cache created by Octave 11.1.0
# name: cache
# type: cell
# rows: 3
# columns: 3
# name: <cell-element>
# type: sq_string
# elements: 1
# length: 12
isAxisHandle


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 624
ISAXISHANDLE Check if the input corresponds to a valid axis handle.

   B = isAxisHandle(VAR)
   If the value of VAR is scalar, corresponds to a valid MATLAB handle,
   and has type equal to 'axis', then returns TRUE. Otherwise, returns
   FALSE.
   This function is used to check if first argument of drawing functions
   corresponds to data or to axis handle to draw in.

   NOTE: The 'parseAxisHandle' function performs a similar task, but
   provides a single line interface.

   Example
     isAxisHandle(gca)
     ans =
         1

   See also 
     parseAxisHandle, drawPoint, drawLine, drawEdge




# name: <cell-element>
# type: sq_string
# elements: 1
# length: 67
ISAXISHANDLE Check if the input corresponds to a valid axis handle.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 15
parseAxisHandle


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 186
PARSEAXISHANDLE Parse handle to axis, or return current axis.

   Usage:
   [ax, varargin] = parseAxisHandle(varargin{:});

   Example
   parseAxisHandle

   See also 
     isAxisHandle



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 61
PARSEAXISHANDLE Parse handle to axis, or return current axis.



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 14
parseDrawInput


# name: <cell-element>
# type: sq_string
# elements: 1
# length: 402
PARSEDRAWINPUT Parse input arguments for drawing functions: draw*.
 
   INPUT:
       PRIM: The primitive object: line, plane, ...
       VALFUN: An anonymous Function to validate PRIM
       TYPE: The drawing type of PRIM: 'line', 'patch', ...
       DEFOPTS: The default drawing options for PRIM as struct

   OUTPUT:
       HAX: The current or specified axes for drawing
       PRIM: validated PRIM



# name: <cell-element>
# type: sq_string
# elements: 1
# length: 66
PARSEDRAWINPUT Parse input arguments for drawing functions: draw*.





