Skip to content
Snippets Groups Projects
Unverified Commit 2bab60fb authored by buccimtpc's avatar buccimtpc Committed by GitHub
Browse files

Update magia_match_units.m

Also this should be changed, according to my previous comments on magia_read_input
parent e5e645f8
Branches
Tags
No related merge requests found
......@@ -10,10 +10,10 @@ max_input = max(input(:,2));
corrected_input = input;
if(max_pet > 100 && max_input < 100)
if(max_pet > 100 && max_input < 200)
% pet bq, input kbq
corrected_input(:,2) = input(:,2)*1000;
elseif(max_pet < 100 && max_input > 100)
elseif(max_pet < 100 && max_input > 200)
% pet kbq, input bq
corrected_input(:,2) = input(:,2)*0.001;
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment