Skip to content

Functions

A

B

C

  • function cabs(E1 &&) Creates an expression that returns the absolute value (magnitude) of the complex number x.
  • function cabssqr(E1 &&) Creates an expression that returns the squared absolute value (magnitude squared) of the complex number x.
  • function carg(E1 &&) Creates an expression that returns the phase angle (argument) of the complex number x.
  • function cartesian(E1 &&) Creates an expression that converts a complex number to cartesian form.
  • function cast(Arg &&) Creates an expression that converts the values of arg to type T.
  • function cast(Arg &&, ctype_t<T>) Creates an expression that converts the values of arg to type T.
  • function cbrt(E1 &&) Creates an expression that returns the cube root of x.
  • function cconj(E1 &&) Creates an expression that returns the complex conjugate of the complex number x.
  • function ccos(E1 &&) Creates an expression that returns the cosine of the complex value x.
  • function ccosh(E1 &&) Creates an expression that returns the hyperbolic cosine of the complex value x.
  • function ceil(E1 &&) Creates an expression that returns the smallest integer value not less than x.
  • function cexp10(E1 &&) Creates an expression that returns 10 raised to the complex number x.
  • function cexp2(E1 &&) Creates an expression that returns 2 raised to the complex number x.
  • function cexp(E1 &&) Creates an expression that returns \(e\) raised to the complex number x.
  • function clamp(E1 &&, E2 &&) Creates an expression that returns the first argument clamped to a range [0, hi]
  • function clamp(E1 &&, E2 &&, E3 &&) Creates an expression that returns the first argument clamped to a range [lo, hi]
  • function clog10(E1 &&) Creates an expression that returns the common (base-10) logarithm of the complex number x.
  • function clog2(E1 &&) Creates an expression that returns the binary (base-2) logarithm of the complex number x.
  • function clog(E1 &&) Creates an expression that returns the natural logarithm of the complex number x.
  • function concatenate(Arg1 &&, Arg2 &&) Creates an expression that concatenates two input expressions along the given axis.
  • function concatenate(Arg1 &&, Arg2 &&, Arg3 &&) Creates an expression that concatenates three input expressions along the given axis.
  • function convert_endianness(T *, size_t) Reverses the byte order (endianness) of a contiguous array of values in place.
  • function convert_sample(const Tin &) Converts a single audio sample between two different native types.
  • function convert(Tout *, const Tin *, size_t) Converts audio samples between two compile-time-known formats.
  • function convert(Tout *, const void *, audio_sample_type, size_t) Converts audio samples whose input format is selected at runtime.
  • function convert(void *, audio_sample_type, const Tin *, size_t) Converts audio samples whose output format is selected at runtime.
  • function cosdeg(E1 &&) Creates an expression that returns the trigonometric cosine of x (expressed in degrees).
  • function cos(E1 &&) Creates an expression that returns the trigonometric cosine of x.
  • function cosh(E1 &&) Creates an expression that returns the hyperbolic cosine of x.
  • function coshsinh(E1 &&) Creates an expression that returns the hyperbolic cosine of the even elements of x and the hyperbolic sine of the odd elements of x.
  • function cossindeg(E1 &&) Creates an expression that returns the trigonometric cosine of the even elements of x and sine of the odd elements. x must be expressed in degrees.
  • function cossin(E1 &&) Creates an expression that returns the trigonometric cosine of the even elements of x and sine of the odd elements. x must be a vector.
  • function coth(E1 &&) Creates an expression that returns the hyperbolic cotangent of x.
  • function counter(T) Creates a 1-D expression_counter with step 1.
  • function counter(T, Arg, Args...) Creates an N-dimensional expression_counter with one step per dimension.
  • function csin(E1 &&) Creates an expression that returns the sine of the complex value x.
  • function csinh(E1 &&) Creates an expression that returns the hyperbolic sine of the complex number x.
  • function csqr(E1 &&) Creates an expression that returns the square of the complex number x.
  • function csqrt(E1 &&) Creates an expression that returns the square root of the complex number x.
  • function cub(E1 &&) Creates an expression that returns the cube of x.

D

E

F

G

H

I

L

M

N

  • function ne(E1 &&, E2 &&) Creates an expression that returns whether e1 is not equal to e2.

O

P

R

S

T

U

  • function unpack(E &&...) Creates an expression that fans out a vector input into several output expressions.

V

Z

  • function zeros() Creates an expression that always evaluates to zero.

This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.