I'm using matlab to write figures as eps files for use in LaTeX, using:
print( '-depsc', 'filename.eps');
and I'm keeping those eps files in version control. As I'm generating a lot of figures at once, but only changing one or two of them, often the only change in a particular eps file is:
-%%CreationDate: 06/29/2011 17:52:57
+%%CreationDate: 06/30/2011 19:18:03
which isn't valuable information. Is there a way to stop matlab from writing the CreationDate?
Dirty solutions encouraged...