0

基本上我有一个 numpy ufunc 可以对数组npy_cdouble进行操作。npy_cfloat例如:

static void
ufunc_H( char ** args
       , npy_intp * dimensions
       , npy_intp * steps
       , void * data)
{

    npy_cdouble * qm_in = (npy_cdouble *) (args[0]);
    npy_cdouble * qm_out = (npy_cdouble *) (args[1]);
    npy_intp i;

    for(i = 0; i < ndim; i++)
    {
        qm_out[i] = (qm_in[i] - qm_in[i ^ ipow(2, argument.act)]) * M_SQRT1_2;
    }


}

然而,这不起作用,编译器说它qm_in具有 type ‘npy_cdouble’ {aka ‘struct <anonymous>’}。我该如何npy_cdouble正确对待?

4

1 回答 1

0

结构npy_cdoublenpy_cfloat具有成员.real.imag。这些可用于执行操作:

static void
ufunc_H( char ** args
       , npy_intp * dimensions
       , npy_intp * steps
       , void * data)
{

    npy_cdouble * qm_in = (npy_cdouble *) (args[0]);
    npy_cdouble * qm_out = (npy_cdouble *) (args[1]);
    npy_intp i;

    for(i = 0; i < ndim; i++)
    {
        qm_out[i].real = (qm_in[i].real - qm_in[i ^ ipow(2, argument.act)].real) * M_SQRT1_2;
        qm_out[i].imag = (qm_in[i].imag - qm_in[i ^ ipow(2, argument.act)].imag) * M_SQRT1_2;
    }


}
于 2019-09-08T12:26:43.883 回答