% aRadNum - plot atomic radius separated into periods % uses the file noble.dat hold off; plot(Atomicrad,'g'); % Now try looking at the data a different way % load a file of noble gas atomic numbers hold on; load noble.dat; n=max(Atomicrad); x=noble(:,2); y=n*noble(:,1); plot(x,y,'r');