Reputation: 21
I have 3 columns of numbers x, y, z, where x and y are coordinates and z is intencity. I would like to represent the data as heat map in gnuplot.
Upvotes: 2
Views: 1667
Reputation: 241868
You can set dgrid3d
to fill in missing values:
set dgrid3d
splot 'input.txt' with pm3d
Upvotes: 3