You can load the dat files one by one plot each file and use hold on..you can load the dat files as below:
d = dir('*.dat');
nfiles = length(d);
for k = 1:nfiles
load d(k).name;
% get your variables, plot
end
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!