Hello,
when I read ALGLIB User Guide correctly, MINBLEIC should be able to calculate such x that A*x = b while li ?xi ?ui. But when I look at ALGLIB User Guide minbleic_d_1 example:
alglib.minbleiccreate(x, out state); alglib.minbleicsetbc(state, bndl, bndu); alglib.minbleicsetinnercond(state, epsg, epsf, epsx); alglib.minbleicsetoutercond(state, epso, epsi); alglib.minbleicoptimize(state, function1_grad, null, null); alglib.minbleicresults(state, out x, out rep);
I can probably see only input for b - the x in: alglib.minbleiccreate(x, out state);
and li - bndl, ui - bndu in: alglib.minbleicsetbc(state, bndl, bndu);
Where, in the MINBLEIC algorithm, do I input A which is a matrix?
Any help is greatly appreciated Best regards hugo
|