[ Bottom of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]

Technical Reference: Base Operating System and Extensions, Volume 1

cpow, cpowf, or cpowl Subroutine

Purpose

Computes the complex power.

Syntax

#include <complex.h>

double complex cpow (x, y)
double complex x;
double complex y;

float complex cpowf (x, y)
float complex x;
float complex y;

long double complex cpowl (x, y)
long double complex x;
long double complex y;

Description

The cpow, cpowf, and cpowl subroutines compute the complex power function xy , with a branch cut for the first parameter along the negative real axis.

Parameters

x Specifies the base value.
y Specifies the power the base value is raised to.

Return Values

The cpow, cpowf, and cpowl subroutines return the complex power function value.

Related Information

cabs, cabsf, or cabsl Subroutine and csqrt, csqrtf, or csqrtl Subroutine

math.h in AIX 5L Version 5.2 Files Reference.

[ Top of Page | Previous Page | Next Page | Contents | Index | Library Home | Legal | Search ]