Amoiensis / Matrix_hub

A lib of Matrix operation for C language. (矩阵运算库--C语言)
Apache License 2.0
234 stars 53 forks source link

M full函数里这个奇幻的操作是什么意思呢?为啥不直接写 j +=_mat->column #12

Open tkpang opened 11 months ago

tkpang commented 11 months ago
                j += ((column_left + _mat->column) - column_left);

M full函数里这个奇幻的操作是什么意思呢?为啥不直接写 j +=_mat->column 而且我感觉这个函数有问题,我正在debug

tkpang commented 11 months ago

这个应该改为 j +=_mat->column-1