Changeset 291

Show
Ignore:
Timestamp:
11/05/08 14:58:09 (2 months ago)
Author:
bruederle
Message:

Minor changes in docstrings.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/plotting.py

    r285 r291  
    8888 
    8989    Inputs: 
    90         fig_width_pt   - Figure width in points. If you want to use your figure inside LaTeX, 
    91                          get this value from LaTeX using '\showthe\columnwidth'. 
    92         ratio          - Ratio between the height and the width of the figure. 
    93         text_fontsize  - Size of axes and in-pic text fonts. 
    94         tick_labelsize - Size of tick label font. 
    95         useTex         - Enables or disables the use of LaTeX for all labels and texts 
     90        fig_width_pt   - figure width in points. If you want to use your figure inside LaTeX, 
     91                         get this value from LaTeX using '\\showthe\\columnwidth'. 
     92        ratio          - ratio between the height and the width of the figure. 
     93        text_fontsize  - size of axes and in-pic text fonts. 
     94        tick_labelsize - size of tick label font. 
     95        useTex         - enables or disables the use of LaTeX for all labels and texts 
    9696                         (for details on how to do that, see http://www.scipy.org/Cookbook/Matplotlib/UsingTex). 
    9797 
     
    116116def set_axis_limits(subplot, xmin, xmax, ymin, ymax): 
    117117    """ 
    118     Defines the axis limits in a plot. 
     118    Defines the axis limits of a plot. 
    119119     
    120120    Inputs: 
     
    136136def set_labels(subplot, xlabel, ylabel): 
    137137    """ 
    138     Defines the axis labels in a plot. 
     138    Defines the axis labels of a plot. 
    139139     
    140140    Inputs: 
     
    162162 
    163163    Inputs: 
    164         fig_width_pt   - Figure width in points. If you want to use your figure inside LaTeX, 
    165                          get this value from LaTeX using '\showthe\columnwidth'. 
    166         ratio          - Ratio between the height and the width of the figure. 
    167         text_fontsize  - Size of axes and in-pic text fonts. 
    168         tick_labelsize - Size of tick label font. 
    169         useTex         - Enables or disables the use of LaTeX for all labels and texts 
    170                          (for details on how to do that, see http://www.scipy.org/Cookbook/Matplotlib/UsingTex). 
     164        fig_width_pt   - figure width in points. If you want to use your figure inside LaTeX, 
     165                         get this value from LaTeX using '\showthe\columnwidth' 
     166        ratio          - ratio between the height and the width of the figure 
     167        text_fontsize  - size of axes and in-pic text fonts 
     168        tick_labelsize - size of tick label font 
     169        useTex         - enables or disables the use of LaTeX for all labels and texts 
     170                         (for details on how to do that, see http://www.scipy.org/Cookbook/Matplotlib/UsingTex) 
    171171 
    172172    """