Asking for laying chicken algorithm source code please help me!
Mostrar comentarios más antiguos
Hello everyone can someone provide me with laying chicken algorithm code implementation? I currently need it for my study. Thank you
5 comentarios
Walter Roberson
el 19 de Abr. de 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
el 19 de Abr. de 2018
Walter Roberson
el 19 de Abr. de 2018
Note: that paper indicates the author implemented in MATLAB. I do not know if the author has made the code available.
Dyo Bened
el 19 de Abr. de 2018
Walter Roberson
el 22 de Feb. de 2023
https://pdfs.semanticscholar.org/f032/99a172d474df2ff76590061861079e87d1a6.pdf and researchgate both appear to have copies of the paper these days
Respuestas (1)
rahaf hamed
el 22 de Feb. de 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 comentario
Walter Roberson
el 22 de Feb. de 2023
it is not clear how this implements the cited paper?
Categorías
Más información sobre Fourier Analysis and Filtering en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!