diff options
author | Paul Garlick <pgarlick@tourbillion-technology.com> | 2020-07-09 12:34:39 +0100 |
---|---|---|
committer | Paul Garlick <pgarlick@tourbillion-technology.com> | 2020-07-09 12:34:39 +0100 |
commit | 4c958c061fcf97c0cc13701578a3fb1400227793 (patch) | |
tree | bd88c8eb5870b8e3b7762f2a6ee59596d13fda96 /python/slope.py | |
parent | af44f7d09dbda959698c7d92cd28a70e5f6ff73e (diff) | |
download | fullSWOF-utils-4c958c061fcf97c0cc13701578a3fb1400227793.tar.gz |
python: slope.py: Identify derivative in plot label.
* python/slope.py (detach_display): Add text to set_title() function.
Diffstat (limited to 'python/slope.py')
-rwxr-xr-x | python/slope.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/slope.py b/python/slope.py index b1ae5f1..cd388d2 100755 --- a/python/slope.py +++ b/python/slope.py @@ -91,7 +91,7 @@ def detach_display(): interpolation='nearest', origin='lower', norm=colors.Normalize(vmin=0, vmax=0.1)) - ax2.set_title('slope') + ax2.set_title('slope ($dz/dy$)') # ax2.set_xticks([0, 100, 200, 300, 400, 500]) fig.colorbar(right, ax=ax2) |