time | calls | line |
---|
| | 1 | function optimfields = optimoptiongetfields
|
| | 2 | %OPTIMOPTIONGETFIELDS returns fieldnames of options in Optimization Toolbox.
|
| | 3 | %
|
| | 4 | % This function returns fieldnames of options in Optimization Toolbox
|
| | 5 | % but not in MATLAB.
|
| | 6 | %
|
| | 7 | % This is a helper function for OPTIMSET and OPTIMGET.
|
| | 8 |
|
| | 9 | % OPTIMFIELDS = OPTIMOPTIONGETFIELDS returns a cell array OPTIMFIELDS of the
|
| | 10 | % fieldnames of options in the Optimization Toolbox but not in MATLAB.
|
| | 11 | %
|
| | 12 | % See also OPTIMSET, OPTIMGET.
|
| | 13 |
|
| | 14 | % Copyright 1990-2014 The MathWorks, Inc.
|
| | 15 |
|
| 26 | 16 | optimfields = {...
|
| | 17 | 'ActiveConstrTol'; ...
|
| | 18 | 'Algorithm'; ...
|
| | 19 | 'AlwaysHonorConstraints'; ...
|
| | 20 | 'DerivativeCheck'; ...
|
| | 21 | 'Diagnostics'; ...
|
| | 22 | 'DiffMaxChange'; ...
|
| | 23 | 'DiffMinChange'; ...
|
| | 24 | 'FinDiffRelStep'; ...
|
| | 25 | 'FinDiffType'; ...
|
| | 26 | 'GoalsExactAchieve'; ...
|
| | 27 | 'GradConstr'; ...
|
| | 28 | 'GradObj'; ...
|
| | 29 | 'HessFcn'; ...
|
| | 30 | 'Hessian'; ...
|
| | 31 | 'HessMult'; ...
|
| | 32 | 'HessPattern'; ...
|
| | 33 | 'HessUpdate'; ...
|
| | 34 | 'InitialHessType'; ...
|
| | 35 | 'InitialHessMatrix'; ...
|
| | 36 | 'InitBarrierParam'; ...
|
| | 37 | 'InitTrustRegionRadius'; ...
|
| | 38 | 'Jacobian'; ...
|
| | 39 | 'JacobMult'; ...
|
| | 40 | 'JacobPattern'; ...
|
| | 41 | 'LargeScale'; ...
|
| | 42 | 'MaxNodes'; ...
|
| | 43 | 'MaxPCGIter'; ...
|
| | 44 | 'MaxProjCGIter'; ...
|
| | 45 | 'MaxSQPIter'; ...
|
| | 46 | 'MaxTime'; ...
|
| | 47 | 'MeritFunction'; ...
|
| | 48 | 'MinAbsMax'; ...
|
| | 49 | 'NoStopIfFlatInfeas'; ...
|
| | 50 | 'ObjectiveLimit'; ...
|
| | 51 | 'PhaseOneTotalScaling'; ...
|
| | 52 | 'Preconditioner'; ...
|
| | 53 | 'PrecondBandWidth'; ...
|
| | 54 | 'RelLineSrchBnd'; ...
|
| | 55 | 'RelLineSrchBndDuration'; ...
|
| | 56 | 'ScaleProblem'; ...
|
| | 57 | 'Simplex'; ...
|
| | 58 | 'SubproblemAlgorithm'; ...
|
| | 59 | 'TolCon'; ...
|
| | 60 | 'TolConSQP'; ...
|
| | 61 | 'TolGradCon'; ...
|
| | 62 | 'TolPCG'; ...
|
| | 63 | 'TolProjCG'; ...
|
| | 64 | 'TolProjCGAbs'; ...
|
| | 65 | 'TypicalX'; ...
|
| 26 | 66 | 'UseParallel'};
|