Asking for laying chicken algorithm source code please help me!
Afficher commentaires plus anciens
Hello everyone can someone provide me with laying chicken algorithm code implementation? I currently need it for my study. Thank you
5 commentaires
Walter Roberson
le 19 Avr 2018
This appears to relate to "Laying Chicken Algorithm: A New Meta-Heuristic Approach to Solve Continuous Programming Problems " which can be found at https://webcache.googleusercontent.com/search?q=cache:WX8iFbIVaA0J:https://www.omicsonline.org/open-access/laying-chicken-algorithm-a-new-metaheuristic-approach-to-solve-continuous-programming-problems-2168-9679-1000344.php%3Faid%3D86925+&cd=2&hl=en&ct=clnk&gl=ca&client=firefox-b but appears to only ever have been posted on omicsonline.org which has gone away.
I also find three citations of the paper.
It is... odd... that the only copy of a paper would seem to be on a site that no longer exists.
Dyo Bened
le 19 Avr 2018
Walter Roberson
le 19 Avr 2018
Note: that paper indicates the author implemented in MATLAB. I do not know if the author has made the code available.
Dyo Bened
le 19 Avr 2018
Walter Roberson
le 22 Fév 2023
https://pdfs.semanticscholar.org/f032/99a172d474df2ff76590061861079e87d1a6.pdf and researchgate both appear to have copies of the paper these days
Réponses (1)
rahaf hamed
le 22 Fév 2023
function error = calc_error(t1,y1,t2,y2,norm_order)
% Interpolate y2 to the same time steps as y1
y2_interp = interp1(t2,y2,t1,'spline');
% Calculate the error
error = norm(y1 - y2_interp, norm_order);
end
1 commentaire
Walter Roberson
le 22 Fév 2023
it is not clear how this implements the cited paper?
Catégories
En savoir plus sur Fourier Analysis and Filtering dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!