
{{alias}}( [out,] x )
    Computes the Fresnel integrals S(x) and C(x).

    Parameters
    ----------
    out: Array|TypedArray|Object (optional)
        Destination array.

    x: number
        Input value.

    Returns
    -------
    y: Array|TypedArray|Object
        S(x) and C(x).

    Examples
    --------
    > var y = {{alias}}( 0.0 )
    [ ~0.0, ~0.0 ]
    > y = {{alias}}( 1.0 )
    [ ~0.438, ~0.780 ]
    > y = {{alias}}( {{alias:@stdlib/constants/float64/pinf}} )
    [ ~0.5, ~0.5 ]
    > y = {{alias}}( {{alias:@stdlib/constants/float64/ninf}} )
    [ ~-0.5, ~-0.5 ]
    > y = {{alias}}( NaN )
    [ NaN, NaN ]

    > var out = new {{alias:@stdlib/array/float64}}( 2 );
    > var v = {{alias}}( out, 0.0 )
    <Float64Array>[ ~0.0, ~0.0 ]
    > var bool = ( v === out )
    true

    See Also
    --------

