I have a matrix (that I calculate with a c++ code) and I want to plot it.
So I read the documentation at section matrix but I did not find my answer.
I want to plot a matrix for example between for x axe and for y axe.
Here it's my configuration file :
set yrange
set xrange
set ytics 0.210526
set xtics 0.210526
set term postscript
set grid
set palette defined (0 "red" , 1 "orange", 2 "yellow", 3 "white")
set pm3d
set pm3d map
splot "matrice" matrix with dots notitle
set output "imageEQ.ps"; replot;
Hi every one,
I have a matrix (that I calculate with a c++ code) and I want to plot it.
So I read the documentation at section matrix but I did not find my answer.
I want to plot a matrix for example between for x axe and for y axe.
Here it's my configuration file :
Here it's my matrix :
it's a square matrix.
My question is … I don't understand, why gnuplot does not plot the matrix between but plot from (0,0) point ?