nitric23 wrote:
> Hello,
>
> I need a Plane that is described by the equation x=1+y on the horizontal
> axis and every real-number for z on this line.
But that's a vertical plane, not a horizontal one.
> How do I realize this with gnuplot?
By using parametric mode.
set parametric
splot 1+u, u, v title "x=1+y"
|