gpt4 book ai didi

c - 我想为 hadamard 矩阵执行此 c 代码。并且想要 hadamard 矩阵的新代码(如果有)

转载 作者:行者123 更新时间:2023-11-30 21:29:14 25 4
gpt4 key购买 nike

我正在尝试为 Hadamard matrix 编译此代码一代。谁能告诉我为什么这段代码没有被执行吗?

#include <stdio.h>
#include <math.h>
#include <conio.h>

main() {
int H_SIZE=32; /*length of each code word: you can change. */
int n,r1,c1,i,j;
int hadamard_matrix[2][2]={{1,1},{1,0}}; /* Initialise 1x1 matrix */
for (r1=0;n<H_SIZE; r1*=2){
for(c1=0; c1<H_SIZE;c1*=2){
while (r1<H_SIZE){
for (i=0;i<r1;i++){ /* loop#1: Copying the code matrix itself below for new code matrix */
for (j=0;j<c1; j++){
hadamard_matrix[i+r1][j]=hadamard_matrix[i][j];
}
}
for (j=0; j<c1;j++){/* Loop#2: Copying the code matrix on right to itself for new matrix */
for (i=0; i<r1;i++){
hadamard_matrix[i][j+c1]=hadamard_matrix[i][j];
}
}
for (i=0;i<r1;i++){/* Loop#3: Copying cojugate of code matrix for complentary diagonal part */
for (j=0;j<c1;j++){
hadamard_matrix[i+r1][j+c1]=hadamard_matrix[i][j];}}
}
}
}
printf("%d\t", hadamard_matrix);
}

最佳答案

首先:通过编译器运行它,我打赌它不会编译。启用编译器警告。

其次:

main() {

那是行不通的。做:

void main(void) {

第三:

n<H_SIZE

这应该是做什么的?您可能想输入 r1。请注意,您的 n 从未初始化,也从未在代码中的其他任何地方使用

第四:

printf("%d\t", hadamard_matrix);

这不是打印矩阵的工作原理。

你似乎还缺少一个右大括号。

关于c - 我想为 hadamard 矩阵执行此 c 代码。并且想要 hadamard 矩阵的新代码(如果有),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33030921/

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