top of page
Adisorn O.
Admin
admin
More actions
Profile
Join date: Mar 28, 2020
Posts (196)
Dec 14, 2025 ∙ 0 min
Beam on Elastic Foundation with Axial Force : The FEM Process
9
0
Nov 19, 2025 ∙ 0 min
Serial vs Parallel Programming and Suitability for Different Optimizers
7
0
Nov 19, 2025 ∙ 1 min
Parallel Jaya do loop with MATLAB & OMP
Most swarm intelligence algorithms allow parallelization when computing the objective function. Each particle can be assigned to each worker to call the solver and return the individual objective value. The algorithm can be explained: MATLAB parfor function [x,f] = jaya_parallel(x,f,lb,ub,nPop,nVar,maxIt) for it = 1:maxIt % --- Step 1: find best/worst [f_best, idx_best] = min(f); [f_worst, idx_worst] = max(f); x_best = x(idx_best,:); x_worst = x(idx_worst,:); newx = zeros(nPop,nVar); ...
7
0
bottom of page

