This code is part of PSO Algorithm, in MATLAB. What is the type of empty_particle and particle?
npop=100;
empty_particle.position=[];
empty_particle.velocity=[];
empty_particle.cost=[];
empty_particle.pbest=[];
empty_particle.pbestcost=[];
particle=repmat(empty_particle,npop,1);