- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnormalize2
More file actions
Latest commit
executable file
·20 lines (13 loc) · 549 Bytes
/
Copy pathnormalize2
File metadata and controls
executable file
·20 lines (13 loc) · 549 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
for i=1:length(hesvec1)
% Dividir pelo max
max_value =max([hesvec1(i) hesvec2(i) hesvec3(i) hesvec4(i) harcolor1(i) harcolor2(i) harcolor3(i) harcolor4(i)]);
hesvec1(i) = hesvec1(i)/max_value;
hesvec2(i) = hesvec2(i)/max_value;
hesvec3(i) = hesvec3(i)/max_value;
hesvec4(i) = hesvec4(i)/max_value;
harcolor1(i) = harcolor1(i)/max_value;
harcolor2(i) = harcolor2(i)/max_value;
harcolor3(i) = harcolor3(i)/max_value;
harcolor4(i) = harcolor4(i)/max_value;
% cortar o plot pelo min
end