Simplex solve non linear problem i.e FittedBondDiscountCurve::FittingMethod::FittingCost

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Simplex solve non linear problem i.e FittedBondDiscountCurve::FittingMethod::FittingCost

SteveGe
Simplex is for LP problem. But it also used for non linear problem. One example I notice is below.
FittedBondDiscountCurve::FittingMethod::FittingCost

Is it correct to use Simplex for non linear problem ? or my understanding of LP is wrong ?

Thanks in advance.
Reply | Threaded
Open this post in threaded view
|

Re: Simplex solve non linear problem i.e FittedBondDiscountCurve::FittingMethod::FittingCost

Peter Caspers-4
Hi,

Simplex in QuantLib is this one here

http://en.wikipedia.org/wiki/Nelder%E2%80%93Mead_method

while you are referring to

http://en.wikipedia.org/wiki/Simplex_algorithm

best regards
Peter

On 8 October 2014 09:04, SteveGe <[hidden email]> wrote:

> Simplex is for LP problem. But it also used for non linear problem. One
> example I notice is below.
> FittedBondDiscountCurve::FittingMethod::FittingCost
>
> Is it correct to use Simplex for non linear problem ? or my understanding of
> LP is wrong ?
>
> Thanks in advance.
>
>
>
> --
> View this message in context: http://quantlib.10058.n7.nabble.com/Simplex-solve-non-linear-problem-i-e-FittedBondDiscountCurve-FittingMethod-FittingCost-tp15951.html
> Sent from the quantlib-users mailing list archive at Nabble.com.
>
> ------------------------------------------------------------------------------
> Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
> Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
> Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
> Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
> http://pubads.g.doubleclick.net/gampad/clk?id=154622311&iu=/4140/ostg.clktrk
> _______________________________________________
> QuantLib-users mailing list
> [hidden email]
> https://lists.sourceforge.net/lists/listinfo/quantlib-users

------------------------------------------------------------------------------
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://p.sf.net/sfu/Zoho
_______________________________________________
QuantLib-users mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/quantlib-users
Reply | Threaded
Open this post in threaded view
|

Re: Simplex solve non linear problem i.e FittedBondDiscountCurve::FittingMethod::FittingCost

SteveGe
Got it. Thanks Peter.