I have a folder which includes 1000 pcd files (a1,...,a1000). I want to read them in a loop in matlab and store each of them in a separate matrix (mat1,...,mat1000).
for example (as a pseudo code)
for i=1:1000
mati = read(pcd(ai))
end
How can I do that?