gpt4 book ai didi

c - 编写 numpy ufunc 时如何处理复数值?

转载 作者:行者123 更新时间:2023-11-30 16:14:03 27 4
gpt4 key购买 nike

基本上我有一个在 npy_cdouble 上运行的 numpy ufunc和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类型为 ‘npy_cdouble’ {aka ‘struct <anonymous>’} 。我该如何治疗npy_cdouble正确吗?

最佳答案

结构体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;
}


}

关于c - 编写 numpy ufunc 时如何处理复数值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57841958/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com