Matlab script to read all dumps of lammps

Share a matlab script that reads all dumps.

file = '/....';% file name
% here you need to put the path of file

try
    dump = fopen(file,'r');
catch
    error('Dumpfile not found!');
end

i=

Guess you like

Origin blog.csdn.net/qq_43689832/article/details/108943190