Hi, I am trying to make two semi-parabolic curves close one another, like if they were leaves, but when I enter the last command, it doesn't plot anything, just shows a blank screen (it shows the curve with plot only replot makes everything blank). Here is the code:
Code:
set xrange [0:10]
plot x*x
set origin 10,100 //Here my idea is to start at the end of first graph so I can go back to the start (0,0) with a new plot
set xrange [0;-10] //Setting up to return to origin, starts with 0 (10), go to -1(9), to 2(8) until -10(0)
replot -x*x //Has to be a negative function to make y values decrease
What I can be doing wrong? Thanks for the help