blob: b7d239bc351db38a6e689b85f8e36779ebf04519 [file] [log] [blame]
avm9996345a8a462022-06-04 12:41:03 +02001#!/usr/bin/env -S gnuplot -c
2outputfile = 'data_out/dep_en_L' # Nom de la imatge resultant (sense extensió)
3datafilepre = 'data_out/depEnL/dep_en_T_L'
4datafilepost = '.dat'
5LS="8 16 32 64"
6
7set terminal svg dashed size 600, 1200 font "Computer Modern,Tinos,Helvetica,15"
8set output outputfile.'.svg'
9
10set multiplot layout 2,1
11
12set title "Capacitat calorífica"
13plot for [L in LS] datafilepre . L . datafilepost using 2:10 with points title "L = ".L
14set title "Susceptibilitat magnètica"
15plot for [L in LS] datafilepre . L . datafilepost using 2:11 with points title "L = ".L