diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2013-09-06 17:43:57 -0400 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2013-09-06 17:45:49 -0400 |
commit | b6892e0d6d495b0b21bddc23b8a97bf4b1c9d039 (patch) | |
tree | 15a425a82ac5a5dd492f0fb71960d5fda9353377 | |
parent | 5801b009075699997ce5e40e8d76f35d858dbe8e (diff) | |
download | manual_for_Experimental_Atomic_Physics-b6892e0d6d495b0b21bddc23b8a97bf4b1c9d039.tar.gz manual_for_Experimental_Atomic_Physics-b6892e0d6d495b0b21bddc23b8a97bf4b1c9d039.zip |
fixed lines to points
-rw-r--r-- | matlab_usage_source/Makefile | 4 | ||||
-rw-r--r-- | matlab_usage_source/errorbar_plot.png | bin | 2897 -> 2524 bytes | |||
-rw-r--r-- | matlab_usage_source/errorbar_with_large_font_plot.png | bin | 3228 -> 2883 bytes | |||
-rw-r--r-- | matlab_usage_source/index.t2t | 4 |
4 files changed, 4 insertions, 4 deletions
diff --git a/matlab_usage_source/Makefile b/matlab_usage_source/Makefile index 1f45132..01fece1 100644 --- a/matlab_usage_source/Makefile +++ b/matlab_usage_source/Makefile @@ -1,6 +1,6 @@ # -*- make -*- # FILE: "/home/evmik/jobs/wm/2013_fall_Experimental_Atomic_Physics_251/matlab_usage_source/Makefile" -# LAST MODIFICATION: "Fri, 06 Sep 2013 08:18:26 -0400 (evmik)" +# LAST MODIFICATION: "Fri, 06 Sep 2013 17:45:34 -0400 (evmik)" # (C) 2001 by Eugeniy Mikhailov, <evmik@tamu.edu> # $Id: Makefile,v 1.3 2003/04/23 20:40:19 evmik Exp $ @@ -27,7 +27,7 @@ html_targets = $(t2t_files:%.t2t=%.html) tex_independent= pdf_independent= $(tex_independent:%.tex=%.pdf) -fig_files = errorbar_plot.png errorbar_with_large_font_plot.png simple_unlabeled_plot.png simple_labeled_plot.png simple_labeled_and_proper_limits_plot.png +fig_files = errorbar_plot.png errorbar_with_large_font_plot.png fitted_data_improved.png fitted_data.png simple_labeled_and_proper_limits_plot.png simple_labeled_plot.png simple_unlabeled_plot.png misc_files = $(fig_files) $(tex_independent) diff --git a/matlab_usage_source/errorbar_plot.png b/matlab_usage_source/errorbar_plot.png Binary files differindex b659dde..ec6ed39 100644 --- a/matlab_usage_source/errorbar_plot.png +++ b/matlab_usage_source/errorbar_plot.png diff --git a/matlab_usage_source/errorbar_with_large_font_plot.png b/matlab_usage_source/errorbar_with_large_font_plot.png Binary files differindex 204b083..cea3333 100644 --- a/matlab_usage_source/errorbar_with_large_font_plot.png +++ b/matlab_usage_source/errorbar_with_large_font_plot.png diff --git a/matlab_usage_source/index.t2t b/matlab_usage_source/index.t2t index bcc31ee..68138f4 100644 --- a/matlab_usage_source/index.t2t +++ b/matlab_usage_source/index.t2t @@ -137,7 +137,7 @@ Let's open a new window for the plot Now we make plot with error bars assuming that they are the same for up and down parts ``` -errorbar(I,V,dV) +errorbar(I,V,dV,'x') ylim([0,6]) ``` @@ -162,7 +162,7 @@ on **``set``** command. fontSize=24; set(gca,'FontSize',fontSize ); -errorbar(I,V,dV) +errorbar(I,V,dV,'x') title('Dependence of voltage on current') xlabel('Current (A)') ylabel('Voltage (V)') |