1# Sample script to draw eigenvalue distribution on complex plane
2
3set terminal postscript eps enhanced color
4set output "distribution_of_complex_eigenvalues.eps"
5
6set title "Distribution of Complex Eigenvalues"
7set xlabel "Real part"
8set ylabel "Imaginary part"
9set style line 1
10unset key
11
12
13# Read data in Matrix Market format.
14
15set datafile commentschars "%"
16
17
18# Draw eigenvalue distribution.
19
20plot filename using 2:3 with points pointtype 7 pointsize 1
21