I would like to make a 3D plot with gnuplot using the interface.txt file (File).
Knowing that I have a y-axis rotation invariance.
This figure represents a 2D section (plot 'interface.txt' u 2:1)
Here's what I'd like to have with gnuplot but I don't know how to plot it.
I would like to get this picture but for theta = [0:2*pi].
I tried this code but for now i don't know how to plot it
reset
set angles degrees
set mapping cylindrical
splot for [t=1:360:2] 'interface.txt' u t:1:(sqrt($2**2+$1**2))
If you have any idea ? Thanks you !