avm99963 | 45a8a46 | 2022-06-04 12:41:03 +0200 | [diff] [blame] | 1 | #!/usr/bin/env -S gnuplot -c |
| 2 | outputfile = 'data_out/dep_en_T' # Nom de la imatge resultant (sense extensió) |
| 3 | datafile = 'data_out/dep_en_T.dat' |
avm99963 | 45a8a46 | 2022-06-04 12:41:03 +0200 | [diff] [blame] | 4 | |
| 5 | set terminal svg dashed size 600, 1200 font "Computer Modern,Tinos,Helvetica,15" |
| 6 | set output outputfile.'.svg' |
| 7 | |
| 8 | set multiplot layout 2,1 |
| 9 | |
| 10 | set title "Capacitat calorífica" |
| 11 | plot datafile using 2:10 with points |
| 12 | set title "Susceptibilitat magnètica" |
| 13 | plot datafile using 2:11 with points |