-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemoryProfiling.m
More file actions
24 lines (19 loc) · 1006 Bytes
/
memoryProfiling.m
File metadata and controls
24 lines (19 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
%%
loggs = [ 3144458240, 3144458240, 2457665536, 140728347181056, 140737488224256, 3144458240, 2216513536, 8497946624 ;
3144982528, 3144982528, 2457141248, 140728347181056, 140737488224256, 3144982528, 2216218624, 8497946624 ;
3408846848, 3408846848, 2459545600, 140728330264576, 140737488224256, 3408846848, 2422587392, 8497946624 ;
3405819904, 3405819904, 2459545600, 140728330264576, 140737488224256, 3405819904, 2422743040, 8497946624 ;
3407228928, 3407228928, 2459545600, 140728330264576, 140737488224256, 3407228928, 2422611968, 8497946624 ;
3407228928, 3407228928, 2459607040, 140728330199040, 140737488224256, 3407228928, 2422530048, 8497946624 ];
format longG
disp(loggs)
%%
memories = zeros(5,8,'double');
for i = 2:1:6
memories(i-1,:) = loggs(i,:)-loggs(i-1,:);
end
format longG
disp(memories)
%% Try this next time... it launches an app that's very cool
% profile clear;
% profile report;