pmtk3 icon indicating copy to clipboard operation
pmtk3 copied to clipboard

lbfgsC cannot be found

Open mrquincle opened this issue 10 years ago • 2 comments

lbfgsC cannot be found

error: 'lbfgsC' undefined near line 527 column 25
error: called from:
error:   /opt/pmtk3/pmtksupportCopy/markSchmidt-9march2011/markSchmidt/minFunc/minFunc.m at line 527, column 23
error:   /opt/pmtk3/toolbox/SupervisedModels/logreg/logregFit.m at line 139, column 45
error:   /opt/pmtk3/demos/logregL2FitTest.m at line 20, column 8
error:   /opt/pmtk3/testPmtk3.m at line 61, column 1

add a file lbfgsC to /opt/pmtk3/pmtksupportCopy/markSchmidt-9march2011/markSchmidt/minFunc

with content:

function [d] = lbfgsC(g,s,y,Hdiag)
% alias for lbfgs for installations missing lbfgsC.mex32
    d = lbfgs(g, s, y, Hdiag);
end

mrquincle avatar Apr 23 '14 16:04 mrquincle

same with me!

badend avatar Jul 20 '16 05:07 badend

A better solution for the Windows platform is given here: http://octave.1599824.n4.nabble.com/Issue-in-installing-Pm-tp4682197p4682344.html

akoita avatar Mar 31 '17 08:03 akoita