Raw File
lbfgsHvFunc2.m
function Hv = lbfgsHvFunc2(v,Hdiag,N,M)
Hv = v/Hdiag - N*(M\(N'*v));
back to top