中文
注册
我要评分
文档获取效率
文档正确性
内容完整性
文档易理解
在线提单
论坛求助
鲲鹏小智

cpow

函数pow的复数接口。

接口定义

C interface:

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

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

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

Fortran interface:

RES = POWF(X, Y);

RES = POW(X, Y);

参数

参数名

类型

描述

输入/输出

x

  • 在cpowf中,x是复数单精度浮点类型。
  • 在cpow中,x是复数双精度浮点类型。
  • 在cpowl中,x是复数长双精度浮点类型。

表示输入数据的浮点值。

输入

y

  • 在cpowf中,y是复数单精度浮点类型。
  • 在cpow中,y是复数双精度浮点类型。
  • 在cpowl中,y是复数长双精度浮点类型。

表示输入数据的浮点值。

输入

返回值

特殊值说明请参见cpow.xlsx

依赖

C: "km.h"

示例

C interface:

    double x1 = 1.0, x2 = 2.0, x3 = 3.0, x4 = 4.0;
    double complex cx1 = __builtin_complex(x1, x2);
    double complex cx2 = __builtin_complex(x3, x4);

    // print result
    double ry;
    double iy;
    ry = __real__ cpow(cx1, cx2);
    iy = __imag__ cpow(cx1, cx2);
    printf("cpow(cx1, cx2) = %.15f, %.15f\n", ry, iy);
    /*
     * cpow(cx1, cx2) = 0.129009594074467, 0.033924092905170 
     * */
Fortran interface:
    REAL(8) :: X = 3.0 
    REAL(8) :: Y = -3.0 
    PRINT*,  POW(X, Y) 
    ! 
    ! OUTPUT 
    !     0.037037037037037
    !
搜索结果
找到“0”个结果

当前产品无相关内容

未找到相关内容,请尝试其他搜索词