645770225
Results
1
issues of
645770225
作者你好,感谢开源 householder函数使用过程中遇到一些问题,当待变换的向量为0向量时,会计算错误,我将householder函数前4行修改为: ```cpp Matrix *H = NULL; Matrix *y = M_Zeros(_x->row, _x->column); MATRIX_TYPE x_norm = M_norm(_x, 2); if (x_norm < 1e-5f) { M_free(y); H = M_I(_x->row); return H; } y->data[0]...