Commit 51aa4fa7 authored by oscar's avatar oscar

提交修改

parent 2c6df487
......@@ -30,9 +30,9 @@ std::string GetMatrixStr(float* data_ptr, int col, int row)
std::string GetMatrixStr(std::vector<std::vector<float>>& data_ptr, int col, int row)
{
std::string str;
for (int i = 0; i < row; i++)
for (int i = 0; i < col; i++)
{
for (int j = 0; j < col; j++)
for (int j = 0; j < row; j++)
{
char log[128] = {};
sprintf(log, "%f,", data_ptr[i][j]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment