From 2743854bb9df129864d30034a59eb615a09d9788 Mon Sep 17 00:00:00 2001 From: Karthik Chandrashekara Date: Sun, 11 Jul 2021 06:03:59 +0200 Subject: [PATCH] Cosmetic changes only. --- .../+Plotting/plotPositionAndVelocitySampling.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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)