How should I write the fitness function for a function(fun1) with double summation

2 views (last 30 days)
M = 8;
N = 5;
5≤x(1) ≤ 20
7≤x(2) ≤ 15
0≤x(3) ≤ 1
5≤x(4) ≤ 20
7≤x(5) ≤ 15
0≤x(6) ≤ 1
fun1 =

Accepted Answer

Star Strider
Star Strider on 5 May 2020
This seems straightforward (at least to me, unless there is more to this than is posted):
fcn = @(x,M,N) M*(x(1)/(x(2)+5)-x(3)) + N*(x(4)/(x(5)+5)-x(6));
then with ‘M’ and ‘N’ defined in the workspace, call it as:
ftns = @(x) fcn(x,M,N)
If you are using the ga (genetic algorithm) function, it is straightforward to constrain the parameters. See the documentation for that.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!