Skip to content
Snippets Groups Projects
Commit 902e237b authored by leprob001's avatar leprob001
Browse files

Bugfix, multiplication instead of division in solve.m.

parent c9b2eb6e
No related branches found
No related tags found
No related merge requests found
253 254
\ No newline at end of file \ No newline at end of file
...@@ -44,7 +44,7 @@ if ~isnan(pOffsetsParameter.soundspeed{'Soundspeed', 'Applied'}) ...@@ -44,7 +44,7 @@ if ~isnan(pOffsetsParameter.soundspeed{'Soundspeed', 'Applied'})
end end
% Distances are in km, soundspeed m/s % Distances are in km, soundspeed m/s
B.toa = B.toa - A{:, 'Distances'} * (pOffsetsParameter.soundspeed{'Soundspeed', 'Applied'} / 1000); B.toa = B.toa - A{:, 'Distances'} / (pOffsetsParameter.soundspeed{'Soundspeed', 'Applied'} / 1000);
A.Distances = []; A.Distances = [];
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment