TCAS figures, greyscale no color necessary
authorDan White <dan@whiteaudio.com>
Fri, 20 Jun 2014 06:16:29 +0000 (01:16 -0500)
committerDan White <dan@whiteaudio.com>
Fri, 20 Jun 2014 06:16:29 +0000 (01:16 -0500)
python-lib/test-data/cal-histograms.pdf
python-lib/test-data/cal-trajectories.pdf
python-lib/test-data/cal-trajectories.py
python-lib/test-data/chip14/arb0/vios-offset-gm/arb0-chip14-iout-raw.pdf
python-lib/test-data/chip14/arb0/vios-offset-gm/arb0-chip14-iout-raw.py

index 77f5e28012b8fdbaef5c175104c500f6306ffb63..4c1a33d5f0f3ab8258cec85cd33127315840cab3 100644 (file)
Binary files a/python-lib/test-data/cal-histograms.pdf and b/python-lib/test-data/cal-histograms.pdf differ
index 8f55778c239cc5179a13ee3da98ab0117aa5af36..2eb6d8875d720dfa323b2f1a6ac548db0e1272d3 100644 (file)
Binary files a/python-lib/test-data/cal-trajectories.pdf and b/python-lib/test-data/cal-trajectories.pdf differ
index 9afce60a5ebbe163591822793a7a1a586eb6ac4f..b9e5e70e20ee245ba3e8750bd8338f3333249bc6 100644 (file)
@@ -164,7 +164,7 @@ if 1:
         # top row
         #
         ax = subplot(N_PLOTS, N_COLS, i+1)
-        plot(g[:sample_nevals[i]+1], '.-')
+        plot(g[:sample_nevals[i]+1], '.-k')
 
         yticks(range(0, 128, 25))
         ylim((0, 120))
@@ -186,7 +186,7 @@ if 1:
         # bottom row
         #
         ax = subplot(N_PLOTS, N_COLS, N_COLS+i+1)
-        plot(1e-3*r[:sample_nevals[i]+1], '.-')
+        plot(1e-3*r[:sample_nevals[i]+1], '.-k')
         hlines(0, -1, 15, linewidth=0.5, color='0.40')
 
         ax.set_xticks(range(0, 15, 4))
@@ -228,7 +228,10 @@ if 1:
         #
         ax = subplot(N_PLOTS, N_COLS, i+1)
         data = sample_cv[i]
-        hist(data, bins=range(128), align='left')
+        hist(data, bins=range(128),
+             align='left',
+             facecolor='0.60',
+             edgecolor='0.00')
         #xlim((0, 127))
 
         xlabels = range(data.min(), data.max()+1)
index 47652c697d04eea27d7b6950956268eeb2cd9907..376fbe78e6076bd376aa46d1f044ae9d1dddd5cb 100644 (file)
Binary files a/python-lib/test-data/chip14/arb0/vios-offset-gm/arb0-chip14-iout-raw.pdf and b/python-lib/test-data/chip14/arb0/vios-offset-gm/arb0-chip14-iout-raw.pdf differ
index 2f084e91023cbf21f9bac7946d0a55276124f278..6e8a2aba96dba8c702216b0d80ad9557c60bf29c 100644 (file)
@@ -82,7 +82,7 @@ if 1:
     vout = data['vout']
 
     plot(vd, vout,
-         '.',
+         '.k',
          label='%i'%ios)
 
     hlines(0, -10, 10, linewidth=0.5, color='0.40')
@@ -114,7 +114,7 @@ if 1:
     vout = data['vout']
 
     plot(vd, tint,
-         '.',
+         '.k',
          label='integration time')
 
     hlines(0, -10, 10, linewidth=0.5, color='0.40')