How can i make optimization by using genetic algorithm to minimize error between desired and simulated force?
6 ビュー (過去 30 日間)
古いコメントを表示
I want to make an optimization using genetic algorithm to minimize the simulated and desired force? The simulated force is obtained from Csv file
回答 (1 件)
Star Strider
2024 年 12 月 13 日
Your fitness function should be something like this:
fitness = @(b) norm(dependent_variable - model_function(b,independent_variable));
Your .csv file should provide the independent variable and one or more dependent variables.
.
0 件のコメント
参考
カテゴリ
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!