diff --git a/MOT Capture Process Simulation/+Plotting/plotPositionAndVelocitySampling.m b/MOT Capture Process Simulation/+Plotting/plotPositionAndVelocitySampling.m index d67a91c..e43edbf 100644 --- a/MOT Capture Process Simulation/+Plotting/plotPositionAndVelocitySampling.m +++ b/MOT Capture Process Simulation/+Plotting/plotPositionAndVelocitySampling.m @@ -41,14 +41,14 @@ function plotPositionAndVelocitySampling(obj, NumberOfBins) legend('FontSize', 14) subplot(3,2,4) - histogram(initialVelocities(:, 2)*1e3,NumberOfBins, 'LineStyle', 'none', 'DisplayName','y-Component') - xlabel('Velocities (mm/s)','FontSize', 14) + histogram(initialVelocities(:, 2),NumberOfBins, 'LineStyle', 'none', 'DisplayName','y-Component') + xlabel('Velocities (m/s)','FontSize', 14) ylabel('Counts','FontSize', 14) legend('FontSize', 14) subplot(3,2,6) - histogram(initialVelocities(:, 3)*1e3,NumberOfBins, 'LineStyle', 'none', 'DisplayName','z-Component') - xlabel('Velocities (mm/s)','FontSize', 14) + histogram(initialVelocities(:, 3),NumberOfBins, 'LineStyle', 'none', 'DisplayName','z-Component') + xlabel('Velocities (m/s)','FontSize', 14) ylabel('Counts','FontSize', 14) legend('FontSize', 14)