diff options
Diffstat (limited to 'plotting-data/slides.org')
-rw-r--r-- | plotting-data/slides.org | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/plotting-data/slides.org b/plotting-data/slides.org index 9545e41..0a89ae8 100644 --- a/plotting-data/slides.org +++ b/plotting-data/slides.org @@ -75,12 +75,14 @@ * Plotting Error bar - : In[]: errorbar(L,tsquare,xerr=delta_L, yerr=delta_T, - : fmt='b.') + : In[]: errorbar(L,tsquare,xerr=delta_L, + : yerr=delta_T,fmt='b.') + * Summary : L = [0.1, 0.2, 0.3, 0.4, 0.5, | : 0.6, 0.7, 0.8, 0.9] : plot(x,y,'o') : plot(x,y,'.') - : errorbar(L,tsquare,xerr=delta_L, yerr=delta_T, fmt='b.') + : errorbar(L,tsquare,xerr=delta_L, + : yerr=delta_T, fmt='b.') |