总结帖 数组存储 matlab中3维数组–>C中1维数组 数组转置函数 #include <stdio.h> // 转置二维数组 void transpose(int *src, int *dest, int rows, int cols) { for (int i = 0; i < rows; ++i) { for