linforward.3.man
来自「COOOL:CWP面向对象最优化库(CWP Object Oriented Op」· MAN 代码 · 共 53 行
MAN
53 行
LINFORWARD(derived) FORWARD OPERATORS LINFORWARD(derived) Jun 1 15:18NAME LinForwardSYNOPSIS #include <LinForward.hh> class LinearForward : public Forward \fIPublic members\fP LinearForward(Matrix<double>*); LinearForward(Matrix<double>*, int); ~LinearForward(); int modelSize(); int dataSize(); const char* className() const; List<double> dataList(Model<double>&); List<double> dataList(Model<long>&); Vector<double> adjointOp(Vector<double>&); Vector<double> forwardOp(Vector<double>&); Vector<double> forwardOp(Vector<long>&); \fIPrivate members\fP Matrix<double>* jacob;DESCRIPTION LinForward is a class for linear forward operators in optimization. It is, in fact, no more than a Matrix. For a quadratic optimization problem, this Matrix is the Hessian of the objective function. CAVEATS LinForward currently only takes Models either double or long integer. It is mostly because I tried to avoid using templates, due to the guliness of template features in G++. Hopefully, this could be changed soon.DEFINED MACROS LINEAR_FORWARD_HHINCLUDED FILES "Forward.hh" "Matrix.hh"SOURCE FILES LinForward.cc
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?