plotting-data/slides.org
changeset 429 bb6bab81e9f2
parent 416 06ac45f4de88
child 434 c8ffd52305ff
equal deleted inserted replaced
428:0385c3157fd1 429:bb6bab81e9f2
    73   | 0.9 | 1.94 |     0.01 |     0.08 |
    73   | 0.9 | 1.94 |     0.01 |     0.08 |
    74  
    74  
    75  
    75  
    76 * Plotting Error bar 
    76 * Plotting Error bar 
    77   
    77   
    78   : In[]: errorbar(L,tsquare,xerr=delta_L, yerr=delta_T,
    78   : In[]: errorbar(L,tsquare,xerr=delta_L,
    79   :                fmt='b.')
    79   :                yerr=delta_T,fmt='b.')
       
    80                   
    80 
    81 
    81 * Summary 
    82 * Summary 
    82  : L = [0.1, 0.2, 0.3, 0.4, 0.5,                                             |
    83  : L = [0.1, 0.2, 0.3, 0.4, 0.5,                                             |
    83  :      0.6, 0.7, 0.8, 0.9]  
    84  :      0.6, 0.7, 0.8, 0.9]  
    84  : plot(x,y,'o')
    85  : plot(x,y,'o')
    85  : plot(x,y,'.')
    86  : plot(x,y,'.')
    86  : errorbar(L,tsquare,xerr=delta_L, yerr=delta_T, fmt='b.')    
    87  : errorbar(L,tsquare,xerr=delta_L, 
       
    88  :          yerr=delta_T, fmt='b.')