You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the householder() function:
else if (fabs(_x->data[0]) <= APPROXIMATELY_ZERO){
_//the w Matrix should copy from _x not point to.., cause w will be released on the end(meanwhile the x will be released as well..);
w = Matrix_copy(_x); //_x;
w = M_numul(w, 1 / M_norm(w, 2));
}
The text was updated successfully, but these errors were encountered:
the householder() function:
else if (fabs(_x->data[0]) <= APPROXIMATELY_ZERO){
_//the w Matrix should copy from _x not point to.., cause w will be released on the end(meanwhile the x will be released as well..);
w = Matrix_copy(_x); //_x;
w = M_numul(w, 1 / M_norm(w, 2));
}
The text was updated successfully, but these errors were encountered: