Asking for laying chicken algorithm source code please help me!

Hello everyone can someone provide me with laying chicken algorithm code implementation? I currently need it for my study. Thank you

5 commentaires

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.
Thank you for your answer. I didnt expected this. Omg I'm so confused right now . I have tried to contact the author. I hope he will reply me soon
Note: that paper indicates the author implemented in MATLAB. I do not know if the author has made the code available.
Thank you Walter . I really appreciate your responses
https://pdfs.semanticscholar.org/f032/99a172d474df2ff76590061861079e87d1a6.pdf and researchgate both appear to have copies of the paper these days

Connectez-vous pour commenter.

Réponses (1)

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

Catégories

En savoir plus sur Fourier Analysis and Filtering dans Centre d'aide et File Exchange

Question posée :

le 19 Avr 2018

Commenté :

le 22 Fév 2023

Community Treasure Hunt

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

Start Hunting!

Translated by