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
\ No newline at end of file
254
\ No newline at end of file
......@@ -44,7 +44,7 @@ if ~isnan(pOffsetsParameter.soundspeed{'Soundspeed', 'Applied'})
end
% 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 = [];
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