$xyz << EOD# X Y Z0000110240390416052510111212513101417152620421522823132420252930931103213331834253534EOD## create the contour linessetcontourbasesetcntrparamlevelincremental -3, 0.5, 3unsetsurfaceunsetkeysetstyledatalinespointssettable$xyz_contoursplot$xyzunsettableplot$xyz_contour
Problem
In the above code if you remove the line
set style data linespoints
The gnuplot works but with the above line the following error raised and an empty graph is shown
Error:
Tabular output of this 3D plot style not implemented
Is there any conflict with these settings? If you even use style lines, gnuplot still works!
Last edit: Mohammad 2018-02-22
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The error message is correct. Gnuplot's tabulation mode ("set table")
does not handle all possible
gnuplot plot styles. In particular it does not handle "with linespoints"
for 3D plots.
Sample code
Problem
In the above code if you remove the line
The gnuplot works but with the above line the following error raised and an empty graph is shown
Error:
Is there any conflict with these settings? If you even use style lines, gnuplot still works!
Last edit: Mohammad 2018-02-22
The error message is correct. Gnuplot's tabulation mode ("set table")
does not handle all possible
gnuplot plot styles. In particular it does not handle "with linespoints"
for 3D plots.
On Thu, Feb 22, 2018 at 3:13 AM, Mohammad atronoush@users.sourceforge.net
wrote:
Thnak you Ethane!