Stability Plot
Code to plot in gnuplot every .txt time dynamics file specified in FILES. Useful to check stability.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#set terminal postscript eps enhanced color
#set output "${name1}_estabilidade.eps"
FILES = system("ls -1 quadrada_dados*.txt")
set yrange [0:1]
set xlabel "time"
set ylabel "C density"
set title "stability"
plot for [data in FILES] data u 1:2 w l title data
pause -1
This post is licensed under CC BY 4.0 by the author.