当前位置:   article > 正文

造一个float类型二维矩阵,并将二维矩阵存快速储到一个float*中(memcpy)_float类型的矩阵

float类型的矩阵
// 创建并初始化一个二维数组
std::vector<std::vector<float>> createAndInitializeArray(int rows, int cols)
{
    std::vector<std::vector<float>> array(rows, std::vector<float>(cols));
    float value = 0.0f;
    for (int i = 0; i < rows; i++) 
    {
        for (int j = 0; j < cols; j++) 
        {
            array[i][j] = value;
            value += 1.0f;
        }
    }
    return array;
}

// 将二维数组的数据复制到一维数组并返回指针
float* flatten2DArray(std::vector<std::vector<float>>& inputArray)
{
    int rows = inputArray.size();
    int cols = inputArray[0].size();

    float* flattenedArray = new float[rows * cols];
    for (int i = 0; i < rows; i++)
    {
        std::memcpy(flattenedArray + i * cols, inputArray[i].data(), cols * sizeof(float));
    }
    return flattenedArray;
}

int main() {
    int rows = 360;
    int cols = 1000;

    // 造假数据并将二维数组的数据复制到一维数组
    std::vector<std::vector<float>> FalseMatrix = createAndInitializeArray(rows, cols);
    float* fdata = flatten2DArray(FalseMatrix);

    // 使用 fdata

    delete [] fdata; // 当您不再需要该数组时,务必执行释放内存的操作

    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/543806
推荐阅读
相关标签
  

闽ICP备14008679号