probml / pmtk3

Probabilistic Modeling Toolkit for Matlab/Octave.
MIT License
1.55k stars 797 forks source link

lbfgsC cannot be found #79

Open mrquincle opened 10 years ago

mrquincle commented 10 years ago

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
badend commented 8 years ago

same with me!

akoita commented 7 years ago

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