
{{alias}}( start, stop, shape, colexicographic )
    Generates a linearly spaced two-dimensional nested numeric array.

    The output array is guaranteed to include the `start` and `stop` values.

    Parameters
    ----------
    start: number
        First array value.

    stop: number
        Last array value.

    shape: Array<integer>
        Array shape.

    colexicographic: boolean
        Specifies whether generated array values should be stored in
        colexicographic order.

    Returns
    -------
    out: Array
        Linearly spaced two-dimensional nested numeric array.

    Examples
    --------
    > var arr = {{alias}}( 0, 10, [ 2, 3 ], false )
    [ [ 0, 2, 4 ], [ 6, 8, 10 ] ]

    See Also
    --------
