Go to main content

man pages section 3: Extended Library Functions, Volume 2

Exit Print View

Updated: Wednesday, July 27, 2022
 
 

cpowf(3M)

Name

cpow, cpowf, cpowl - complex power functions

Synopsis

c99 [ flag... ] file... –lm [ library... ]
#include <complex.h>

double complex cpow(double complex x, double complex y);
float complex cpowf(float complex x, float complex y);
long double complex cpowl(long double complex x,
     long double complex y);

Description

These functions compute the complex power function x^y, with a branch cut for the first parameter along the negative real axis.

Return Values

These functions return the complex power function value.

Errors

No errors are defined.

Attributes

See attributes(7) for descriptions of the following attributes:

ATTRIBUTE TYPE
ATTRIBUTE VALUE
Interface Stability
Committed
Availability
system/library/math
MT-Level
MT-Safe
Standard

See Also

complex.h(3HEAD), cabs(3M), csqrt(3M), attributes(7), standards(7)