File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed
Sources/Accord.Math/Optimization Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -29,9 +29,29 @@ namespace Accord.Math.Optimization
29
29
using Accord . Compat ;
30
30
31
31
/// <summary>
32
- /// Quadratic objective function.
32
+ /// Nonlinear objective function.
33
33
/// </summary>
34
34
///
35
+ /// <example>
36
+ /// <para>
37
+ /// In this framework, it is possible to state a non-linear programming problem
38
+ /// using either symbolic processing or vector-valued functions. The following
39
+ /// example demonstrates the symbolic processing case:</para>
40
+ ///
41
+ /// <code source="Unit Tests\Accord.Tests.Math\Optimization\AugmentedLagrangianTest.cs" region="doc_lambda"/>
42
+ ///
43
+ /// <para>
44
+ /// And this is the same example as before, but using standard vectors instead.</para>
45
+ ///
46
+ /// <code source="Unit Tests\Accord.Tests.Math\Optimization\AugmentedLagrangianTest.cs" region="doc_vector"/>
47
+ /// </example>
48
+ ///
49
+ /// <seealso cref="NelderMead"/>
50
+ /// <seealso cref="Cobyla"/>
51
+ /// <seealso cref="Subplex"/>
52
+ /// <seealso cref="AugmentedLagrangian"/>
53
+ /// <seealso cref="BroydenFletcherGoldfarbShanno"/>
54
+ ///
35
55
public class NonlinearObjectiveFunction : IObjectiveFunction
36
56
{
37
57
You can’t perform that action at this time.
0 commit comments