Skip to content
Snippets Groups Projects
Commit 43701fd6 authored by leprob001's avatar leprob001
Browse files

The plugins now echo the date and position to the console.

parent 881b741f
No related branches found
No related tags found
No related merge requests found
274
\ No newline at end of file
275
\ No newline at end of file
......@@ -62,7 +62,7 @@ for oDates = 1:length(dates)
rad2deg(artoa.vendor.xnavai(deg2rad(soundsourcePositions), distances, deg2rad(referencePosition), 2)) ...
];
clockError = [clockError; NaN(1, 3)];
disp([' *** Date: ' num2str(dates(oDates)) ' converged.']);
disp([' *** Date: ' num2str(dates(oDates)) ' converged at position: ' num2str(positions(end, 1)) ', ' num2str(positions(end, 2))]);
end
positions = positions(2:end, :);
......
......@@ -70,7 +70,7 @@ for oDates = 1:length(dates)
) / (soundVelocity(oClockError)/1000);
end
clockError = [clockError; currentClockError];
disp([' *** Date: ' num2str(dates(oDates)) ' converged.']);
disp([' *** Date: ' num2str(dates(oDates)) ' converged at position: ' num2str(positions(end, 1)) ', ' num2str(positions(end, 2))]);
end
positions = positions(2:end, :);
......
......@@ -60,7 +60,7 @@ for oDates = 1:length(dates)
) ...
];
clockError = [clockError; NaN(1, 3)];
disp([' *** Date: ' num2str(dates(oDates)) ' converged.']);
disp([' *** Date: ' num2str(dates(oDates)) ' converged at position: ' num2str(positions(end, 1)) ', ' num2str(positions(end, 2))]);
end
positions = positions(2: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