From: Ethan A M. <me...@uw...> - 2022-05-18 07:11:45
|
On Monday, 16 May 2022 15:39:25 PDT Dima Kogan wrote: > Hi. I'm having trouble with contoured plots, and I'm guessing there's at > least one gnuplot bug here. Can I please get some pointers? > [snip] > > But if I add the transform, it is ignored by the contours. THIS doesn't work: > > set view map > set contour base > splot "sincos.float32" binary array=(90,100) format="%float" using ($1+100) with lines nosurface I was focused on explaining why normal using specifiers don't work for binary array data. What I didn't think to point out was that for the specific case of a constant offset, as in your example, you don't need a using specifier: splot "sincos.float32" binary array=(90,100) format="%float" origin=(0,0,100) with lines Ethan |