I need help with optimization problem
3 ビュー (過去 30 日間)
古いコメントを表示
I have an optimization problem with 6 variables. The fitness function I use have two outputs: the frequency and the power. What i want to do is to fix the frequency to a range and maximize the power output. However, i could not fix the frequency. Could you please help me?
2 件のコメント
Star Strider
2014 年 9 月 27 日
Please post your fitness function and your data, and a breif description of what you are doing. What are you optimising?
回答 (1 件)
Matt J
2014 年 9 月 27 日
It sounds like fmincon or ga could be used with the nonlcon argument to constrain the frequency.
3 件のコメント
Matt J
2014 年 10 月 5 日
The frequency is, I assume, a nonlinear function of the decision variables. Therefore, you have nonlinear inequality constraints,
[c,ceq]=nonlcon(x)
ceq=[];
c(1)=frequency(x)-upperbound;
c(2)=lowerbound-frequency(x);
参考
カテゴリ
Help Center および File Exchange で Genetic Algorithm についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!