
{{alias}}( order, N, k, x, strideX, out, LDO )
    Computes the Cartesian power for a single-precision floating-point strided
    array.

    `k`-tuples are stored as rows in the output matrix, where the `j`-th column
    contains the `j`-th element of each tuple.

    The `N`, `k`, and stride parameters determine which elements in the strided
    arrays are accessed at runtime.

    If `N <= 0` or `k <= 0`, the function returns `out` unchanged.

    Parameters
    ----------
    order: string
        Row-major (C-style) or column-major (Fortran-style) order.

    N: integer
        Number of indexed elements.

    k: integer
        Power.

    x: Float32Array
        Input array.

    strideX: integer
        Stride length for `x`.

    out: Float32Array
        Output array.

    LDO: integer
        Stride length between successive contiguous vectors of the matrix `out`
        (a.k.a., leading dimension of `out`).

    Returns
    -------
    out: Float32Array
        Output array.

    Examples
    --------
    // Standard Usage:
    > var x = new {{alias:@stdlib/array/float32}}( [ 1.0, 2.0 ] );
    > var out = new {{alias:@stdlib/array/float32}}( 8 );
    > {{alias}}( 'row-major', x.length, 2, x, 1, out, 2 )
    <Float32Array>[ 1.0, 1.0, 1.0, 2.0, 2.0, 1.0, 2.0, 2.0 ]

    // Using `N` and stride parameters:
    > x = new {{alias:@stdlib/array/float32}}( [ 1.0, 0.0, 2.0, 0.0 ] );
    > out = new {{alias:@stdlib/array/float32}}( 8 );
    > {{alias}}( 'row-major', 2, 2, x, 2, out, 2 )
    <Float32Array>[ 1.0, 1.0, 1.0, 2.0, 2.0, 1.0, 2.0, 2.0 ]

    // Using view offsets:
    > var x0 = new {{alias:@stdlib/array/float32}}( [ 0.0, 1.0, 2.0, 3.0 ] );
    > var x1 = new {{alias:@stdlib/array/float32}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
    > out = new {{alias:@stdlib/array/float32}}( 8 );
    > {{alias}}( 'row-major', 2, 2, x1, 1, out, 2 )
    <Float32Array>[ 1.0, 1.0, 1.0, 2.0, 2.0, 1.0, 2.0, 2.0 ]


{{alias}}.ndarray( N, k, x, sx, ox, out, so1, so2, oo )
    Computes the Cartesian power for a single-precision floating-point strided
    array using alternative indexing semantics.

    `k`-tuples are stored as rows in the output matrix, where the `j`-th column
    contains the `j`-th element of each tuple.

    While typed array views mandate a view offset based on the underlying
    buffer, the offset parameters support indexing semantics based on starting
    indices.

    Parameters
    ----------
    N: integer
        Number of indexed elements.

    k: integer
        Power.

    x: Float32Array
        Input array.

    sx: integer
        Stride length for `x`.

    ox: integer
        Starting index for `x`.

    out: Float32Array
        Output array.

    so1: integer
        Stride length for the first dimension of `out`.

    so2: integer
        Stride length for the second dimension of `out`.

    oo: integer
        Starting index for `out`.

    Returns
    -------
    out: Float32Array
        Output array.

    Examples
    --------
    // Standard Usage:
    > var x = new {{alias:@stdlib/array/float32}}( [ 1.0, 2.0 ] );
    > var out = new {{alias:@stdlib/array/float32}}( 8 );
    > {{alias}}.ndarray( x.length, 2, x, 1, 0, out, 2, 1, 0 )
    <Float32Array>[ 1.0, 1.0, 1.0, 2.0, 2.0, 1.0, 2.0, 2.0 ]

    // Using an index offset:
    > x = new {{alias:@stdlib/array/float32}}( [ 0.0, 1.0, 2.0, 3.0 ] );
    > out = new {{alias:@stdlib/array/float32}}( 8 );
    > {{alias}}.ndarray( 2, 2, x, 1, 1, out, 2, 1, 0 )
    <Float32Array>[ 1.0, 1.0, 1.0, 2.0, 2.0, 1.0, 2.0, 2.0 ]

    See Also
    --------

