How can i make optimization by using genetic algorithm to minimize error between desired and simulated force?
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commento
Risposte (1)
Star Strider
il 13 Dic 2024
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 Commenti
Vedere anche
Categorie
Scopri di più su Genetic Algorithm in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!