gpt4 book ai didi

复数 3D 数组

转载 作者:太空宇宙 更新时间:2023-11-04 08:11:19 27 4
gpt4 key购买 nike

我如何在 C 中动态定义复数的三维数组,以便我可以在访问数组时方便的 [i] [j] [k] 符号中访问?

最佳答案

扩展 Bob__ example将数组分配到堆上而不是堆栈上:

#include <stdlib.h>
#include <stdio.h>
#include <complex.h>


int main(void)
{
size_t n = 2, m = 3, o = 4;

double complex (*pa)[n][m][o] = malloc(sizeof *pa);
if (NULL == pa)
{
perror("malloc() failed");
exit(EXIT_FAILURE);
}

(*pa)[1][2][3] = 1.0 + 0.5*I;

printf("%f + %fi\n", creal((*pa)[1][2][3]), cimag((*pa)[1][2][3]));

free(pa);

return EXIT_SUCCESS;
}

关于复数 3D 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39182427/

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