I'm trying to plot the x! function in gnuplot, I defined first the factorial function and then called it, but I'm always getting stack overflow, no matter what bounds I set to the graph.
This what I've tried:
gnuplot> fac(n) = (n==0) ? 1 : n * fac(n-1)
gnuplot> plot [0:10][0:10] log(fac(x)), log(x**x)
stack overflow