#!/usr/bin/gnuplot # 20201123 set title 'SKIN TENSION LAW' set terminal png set datafile separator whitespace #set size ratio 1 set grid set nokey set xlabel "Distance %" set ylabel "Lateral skin tension %" set xrange [0:100] set yrange [0:10] set xtics 10 set ytics 1 plot "data.txt" using 2:3 t "Extrados LE to TE" with lp, \ 'data.txt' using 4:5 t "Intrados TE to LE" with lp set key top left set out 'skt.png'; replot pause -1