Skip to content

Instantly share code, notes, and snippets.

@Thermoflux
Created December 24, 2017 19:17
Show Gist options
  • Save Thermoflux/1f0a5666064dfb36f437d505c4ab9e88 to your computer and use it in GitHub Desktop.
Save Thermoflux/1f0a5666064dfb36f437d505c4ab9e88 to your computer and use it in GitHub Desktop.
h=figure;histogram(gather(Data.CreatedOn));
saveas(h,'CreatedOn_AllData.fig');
h=figure;histogram(gather(Data.FileTime));
saveas(h,'FileTime_AllData.fig');
Iterm = Data.TerminalCode == 1004;
D = gather(Data(Iterm,:));
D = D(D.ProductCode == 24,:);
h=figure;histogram(D.FileTime);
saveas(h,'FileTime_T1004PID24.fig');
h=figure;histogram(D.CreatedOn);
saveas(h,'CreatedOn_T1004PID24.fig');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment