Solve multiobjective goal attainment problems
Finds the minimum of a problem specified by
weight, goal, b, and beq are vectors, A and Aeq are matrices, and c(x), ceq(x), and F(x) are functions that return vectors. F(x), c(x), and ceq(x) can be nonlinear functions.
x, lb, and ub can be passed as vectors or matrices; see Matrix Arguments.
x = fgoalattain(fun,x0,goal,weight)
x = fgoalattain(fun,x0,goal,weight,A,b)
x = fgoalattain(fun,x0,goal,weight,A,b,Aeq,beq)
x = fgoalattain(fun,x0,goal,weight,A,b,Aeq,beq,lb,ub)
x = fgoalattain(fun,x0,goal,weight,A,b,Aeq,beq,lb,ub,nonlcon)
x = fgoalattain(fun,x0,goal,weight,A,b,Aeq,beq,lb,ub,nonlcon,options)
x = fgoalattain(problem)
[x,fval] = fgoalattain(...)
[x,fval,attainfactor] = fgoalattain(...)
[x,fval,attainfactor,exitflag] = fgoalattain(...)
[x,fval,attainfactor,exitflag,output]
= fgoalattain(...)
[x,fval,attainfactor,exitflag,output,lambda]
= fgoalattain(...)
fgoalattain
solves the goal attainment problem,
which is one formulation for minimizing a multiobjective optimization
problem.
Note: Passing Extra Parameters explains how to pass extra parameters to the objective functions and nonlinear constraint functions, if necessary. |
x = fgoalattain(fun,x0,goal,weight)
tries to make the objective functions supplied by fun
attain
the goals specified by goal
by varying x
,
starting at x0
, with weight specified by weight
.
x = fgoalattain(fun,x0,goal,weight,A,b)
solves
the goal attainment problem subject to the linear inequalities A*x ≤ b
.
x = fgoalattain(fun,x0,goal,weight,A,b,Aeq,beq)
solves
the goal attainment problem subject to the linear equalities Aeq*x
= beq
as well. Set A = []
and b
= []
if no inequalities exist.
x = fgoalattain(fun,x0,goal,weight,A,b,Aeq,beq,lb,ub)
defines
a set of lower and upper bounds on the design variables in x
,
so that the solution is always in the range lb ≤ x ≤ ub
.
Note: See Iterations Can Violate Constraints. |
x = fgoalattain(fun,x0,goal,weight,A,b,Aeq,beq,lb,ub,nonlcon)
subjects the goal attainment problem to the nonlinear inequalities c(x)
or
nonlinear equality constraints ceq(x)
defined in nonlcon
. fgoalattain
optimizes
such that c(x) ≤ 0
and ceq(x) = 0
. Set lb = []
and/or ub
= []
if no bounds exist.
x = fgoalattain(fun,x0,goal,weight,A,b,Aeq,beq,lb,ub,nonlcon,options)
minimizes
with the optimization options specified in options
.
Use optimoptions
to set these
options.
x = fgoalattain(problem)
finds the minimum
for problem
, where problem
is
a structure described in Input Arguments.
Create the problem
structure by exporting
a problem from Optimization app, as described in Exporting Your Work.
[x,fval] = fgoalattain(...)
returns
the values of the objective functions computed in fun
at
the solution x
.
[x,fval,attainfactor] = fgoalattain(...)
returns the attainment factor at the solution x
.
[x,fval,attainfactor,exitflag] = fgoalattain(...)
returns
a value exitflag
that describes the exit condition
of fgoalattain
.
[x,fval,attainfactor,exitflag,output]
= fgoalattain(...)
returns a structure output
that
contains information about the optimization.
[x,fval,attainfactor,exitflag,output,lambda]
= fgoalattain(...)
returns a structure lambda
whose
fields contain the Lagrange multipliers at the solution x
.
Note:
If the specified input bounds for a problem are inconsistent,
the output |
Function Arguments contains
general descriptions of arguments passed into fgoalattain
.
This section provides function-specific details for fun
, goal
, nonlcon
, options
, weight
,
and problem
:
| The
function to be minimized. x = fgoalattain(@myfun,x0,goal,weight) where function F = myfun(x) F = ... % Compute function values at x.
x = fgoalattain(@(x)sin(x.*x),x0,goal,weight); If
the user-defined values for To
make an objective function as near as possible to a goal value, (i.e.,
neither greater than nor less than) use If
the gradient of the objective function can also be computed and the options = optimoptions('fgoalattain','GradObj','on') then
the function
| |||
| Vector
of values that the objectives attempt to attain. The vector is the
same length as the number of objectives | |||
| The function that computes the nonlinear inequality
constraints x = fgoalattain(@myfun,x0,goal,weight,A,b,Aeq,beq,... lb,ub,@mycon) where function [c,ceq] = mycon(x) c = ... % compute nonlinear inequalities at x. ceq = ... % compute nonlinear equalities at x. If
the gradients of the constraints can also be computed and the
options = optimoptions('fgoalattain','GradConstr','on') then
the function If
Passing Extra Parameters explains
how to parameterize the nonlinear constraint function | |||
| Options provides the function-specific details
for the | |||
| A
weighting vector to control the relative underattainment or overattainment
of the objectives in
| |||
When
the weighting function | ||||
problem |
| Vector of objective functions | ||
| Initial point for x | |||
| Goals to attain | |||
| Relative importance factors of goals | |||
| Matrix for linear inequality constraints | |||
| Vector for linear inequality constraints | |||
| Matrix for linear equality constraints | |||
| Vector for linear equality constraints | |||
| Vector of lower bounds | |||
| Vector of upper bounds | |||
| Nonlinear constraint function | |||
| 'fgoalattain' | |||
| Options created with optimoptions |
Function Arguments contains
general descriptions of arguments returned by fgoalattain
.
This section provides function-specific details for attainfactor
, exitflag
, lambda
,
and output
:
| The amount of over- or underachievement
of the goals. | |
| Integer identifying the
reason the algorithm terminated. The following lists the values of | |
| Function converged to a solutions | |
| Magnitude of the search direction less than the specified
tolerance and constraint violation less than | |
| Magnitude of directional derivative less than the specified
tolerance and constraint violation less than | |
| Number of iterations exceeded | |
| Stopped by an output function or plot function. | |
| No feasible point was found. | |
| Structure containing the
Lagrange multipliers at the solution | |
lower | Lower bounds | |
upper | Upper bounds | |
ineqlin | Linear inequalities | |
eqlin | Linear equalities | |
ineqnonlin | Nonlinear inequalities | |
eqnonlin | Nonlinear equalities | |
| Structure containing information about the optimization. The fields of the structure are | |
iterations | Number of iterations taken | |
funcCount | Number of function evaluations | |
lssteplength | Size of final line search step relative to search direction | |
stepsize | Final displacement in | |
algorithm | Optimization algorithm used | |
firstorderopt | Measure of first-order optimality | |
constrviolation | Maximum of constraint functions | |
message | Exit message |
Optimization options used by fgoalattain
.
Use optimoptions
to set or change options
.
See Optimization Options Reference for detailed
information.
| Display diagnostic information about the function to
be minimized or solved. The choices are |
| Maximum change in variables for finite-difference gradients
(a positive scalar). The default is |
| Minimum change in variables for finite-difference gradients
(a positive scalar). The default is |
| Level of display (see Iterative Display):
|
FinDiffRelStep | Scalar or vector step size factor for finite differences. When
you set
where
Scalar |
FinDiffType | Finite differences, used to estimate gradients, are either The algorithm is careful to obey bounds when estimating both types of finite differences. So, for example, it could take a backward, rather than a forward, difference to avoid evaluating at a point outside bounds. |
FunValCheck | Check whether objective function and constraints values
are valid. |
| Specifies the number of objectives for which it is required
for the objective |
| Gradient for nonlinear constraint functions defined by
the user. When set to |
| Gradient for the objective function defined by the user.
See the preceding description of |
| Maximum number of function evaluations allowed (a positive
integer). The default is |
| Maximum number of iterations allowed (a positive integer).
The default is |
MaxSQPIter | Maximum number of SQP iterations allowed (a positive
integer). The default is |
| Use goal attainment/minimax merit function if set to |
OutputFcn | Specify one or more user-defined functions that an optimization
function calls at each iteration, either as a function handle or as
a cell array of function handles. The default is none ( |
| Plots various measures of progress while the algorithm
executes, select from predefined plots or write your own. Pass a function
handle or a cell array of function handles. The default is none (
For information on writing a custom plot function, see Plot Functions. |
RelLineSrchBnd | Relative bound (a real nonnegative scalar value) on the
line search step length such that the total displacement in |
RelLineSrchBndDuration | Number of iterations for which the bound specified in |
| Termination tolerance on the constraint violation, a
positive scalar. The default is |
| Termination tolerance on inner iteration SQP constraint
violation, a positive scalar. The default is |
| Termination tolerance on the function value, a positive
scalar. The default is |
| Termination tolerance on |
| Typical |
UseParallel | When |
Consider a linear system of differential equations.
An output feedback controller, K
, is designed
producing a closed loop system
The eigenvalues of the closed loop system are determined from
the matrices A
, B
, C
,
and K
using the command eig(A+B*K*C)
.
Closed loop eigenvalues must lie on the real axis in the complex plane
to the left of the points [-5,-3,-1]
. In order
not to saturate the inputs, no element in K
can
be greater than 4
or be less than -4
.
The system is a two-input, two-output, open loop, unstable system, with state-space matrices.
The set of goal values for the closed loop eigenvalues is initialized as
goal = [-5,-3,-1];
To ensure the same percentage of under- or overattainment in
the active objectives at the solution, the weighting matrix, weight
,
is set to abs(goal)
.
Starting with a controller, K = [-1,-1; -1,-1]
,
first write a function file, eigfun.m
.
function F = eigfun(K,A,B,C) F = sort(eig(A+B*K*C)); % Evaluate objectives
Next, enter system matrices and invoke an optimization routine.
A = [-0.5 0 0; 0 -2 10; 0 1 -2]; B = [1 0; -2 2; 0 1]; C = [1 0 0; 0 0 1]; K0 = [-1 -1; -1 -1]; % Initialize controller matrix goal = [-5 -3 -1]; % Set goal values for the eigenvalues weight = abs(goal); % Set weight for same percentage lb = -4*ones(size(K0)); % Set lower bounds on the controller ub = 4*ones(size(K0)); % Set upper bounds on the controller options = optimoptions('fgoalattain','Display','iter'); % Set display parameter [K,fval,attainfactor] = fgoalattain(@(K)eigfun(K,A,B,C),... K0,goal,weight,[],[],[],[],lb,ub,[],options)
You can run this example by using the script goaldemogoaldemo
. (From the MATLAB Help
browser or the MathWorks Web site documentation, you can click the goaldemo
name
to display the example.) After about 11 iterations, a solution is
Active inequalities (to within options.TolCon = 1e-006): lower upper ineqlin ineqnonlin 1 1 2 2 4 K = -4.0000 -0.2564 -4.0000 -4.0000 fval = -6.9313 -4.1588 -1.4099 attainfactor = -0.3863
The attainment factor indicates that each of the objectives has been overachieved by at least 38.63% over the original design goals. The active constraints, in this case constraints 1 and 2, are the objectives that are barriers to further improvement and for which the percentage of overattainment is met exactly. Three of the lower bound constraints are also active.
In the preceding design, the optimizer tries to make the objectives
less than the goals. For a worst-case problem where the objectives
must be as near to the goals as possible, use optimoptions
to
set the GoalsExactAchieve
option to the number
of objectives for which this is required.
Consider the preceding problem when you want all the eigenvalues
to be equal to the goal values. A solution to this problem is found
by invoking fgoalattain
with the GoalsExactAchieve
option
set to 3
.
options = optimoptions('fgoalattain','GoalsExactAchieve',3); [K,fval,attainfactor] = fgoalattain(... @(K)eigfun(K,A,B,C),K0,goal,weight,[],[],[],[],lb,ub,[],... options);
After about seven iterations, a solution is
K,fval,attainfactor K = -1.5954 1.2040 -0.4201 -2.9046 fval = -5.0000 -3.0000 -1.0000 attainfactor = 1.1304e-022
In this case the optimizer has tried to match the objectives
to the goals. The attainment factor (of 1.1304e-22
or
so, depending on your system) indicates that the goals have been matched
almost exactly.
This problem has discontinuities when the eigenvalues become
complex; this explains why the convergence is slow. Although the underlying
methods assume the functions are continuous, the method is able to
make steps toward the solution because the discontinuities do not
occur at the solution point. When the objectives and goals are complex, fgoalattain
tries
to achieve the goals in a least-squares sense.
The objectives must be continuous. fgoalattain
might
give only local solutions.
[1] Brayton, R.K., S.W. Director, G.D. Hachtel, and L.Vidigal, "A New Algorithm for Statistical Circuit Design Based on Quasi-Newton Methods and Function Splitting," IEEE Transactions on Circuits and Systems, Vol. CAS-26, pp 784-794, Sept. 1979.
[2] Fleming, P.J. and A.P. Pashkevich, Computer Aided Control System Design Using a Multi-Objective Optimisation Approach, Control 1985 Conference, Cambridge, UK, pp. 174-179.
[3] Gembicki, F.W., "Vector Optimization for Control with Performance and Parameter Sensitivity Indices," Ph.D. Dissertation, Case Western Reserve Univ., Cleveland, OH, 1974.
[4] Grace, A.C.W., "Computer-Aided Control System Design Using Optimization Techniques," Ph.D. Thesis, University of Wales, Bangor, Gwynedd, UK, 1989.
[5] Han, S.P., "A Globally Convergent Method For Nonlinear Programming," Journal of Optimization Theory and Applications, Vol. 22, p. 297, 1977.
[6] Powell, M.J.D., "A Fast Algorithm for Nonlinear Constrained Optimization Calculations," Numerical Analysis, ed. G.A. Watson, Lecture Notes in Mathematics, Vol. 630, Springer Verlag, 1978.
fmincon
| fminimax
| optimoptions
| optimtool