set terminal postscript portrait enhanced color solid set output set xlabel "Frequency [MHz]" set key top left set ylabel "Current Gain [dB] / Phase [10 deg]" set title "Basic 2N3904 Long Tail Pair Frequency Response Of Current Gain" set grid mxtics mytics xtics ytics set logscale x set mytics 10 plot "sim/basic_cell.data" using ($1/1e6):2 title "Gain alone" with lines, \ "sim/basic_cell.data" using ($1/1e6):3 title "Gain with R" with lines, \ "sim/basic_cell.data" using ($1/1e6):4 title "Gain with C" with lines, \ "sim/basic_cell.data" using ($1/1e6):5 title "Gain with RC" with lines, \ "sim/basic_cell.data" using ($1/1e6):($6/10) title "Phase alone" with lines, \ "sim/basic_cell.data" using ($1/1e6):($7/10) title "Phase with R" with lines, \ "sim/basic_cell.data" using ($1/1e6):($8/10) title "Phase with C" with lines, \ "sim/basic_cell.data" using ($1/1e6):($9/10) title "Phase with RC" with lines