フィルターのクリア

GA optimization toolbox sover

2 ビュー (過去 30 日間)
Nilufa Yeasmin
Nilufa Yeasmin 2016 年 12 月 21 日
コメント済み: Walter Roberson 2017 年 1 月 3 日
Hello I am a student of IPE and i am working with VRPWSDP. I want to optimize the travelling distnce in MATLAB by using GA optimization toolbox.But I am unable to write fitness function,linear equality constrants,inequality constraints etc. How will I do it.
  7 件のコメント
Nilufa Yeasmin
Nilufa Yeasmin 2016 年 12 月 23 日
Thanks Walter Roberson for your advice. I have attach the file for my problem. How can I breakdown this equation in matlab.

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2016 年 12 月 23 日
function cost = objective(x, d)
cost = sum(d(:) .* x(:));
end
To be used with
ga( @(x) objective(x, d), 20*20*5 )

カテゴリ

Help Center および File ExchangeNonlinear Control についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by