I plotted number of functions $y=y(x)$ with different parameter $a$ for given value of $\tau$ (see the code below) via MAPLE
restart;
R0:=gamma+2*ln(2)+Re(Psi(1/2+(1+I)*tanh((1+I)*x)/((tau+0.25e-1*a)*y)))+ln(y);
tau := 9.975;
with(plots);
implicitplot({seq(R0, a = 1 .. 50)}, x = 0 .. 5, y = 0 .. 1, numpoints = 1000);
My question is how I can extract the values of $y$ from these plots in the form of matrix $50\times1000$ ($a\times x$) in data file?
Thanks in a advance.
You can use
getdatato extract points data from a plot (see documentation https://www.maplesoft.com/support/help/Maple/view.aspx?path=plottools/getdata):By inspecting the structure, you see it gives usually list of curves, their ranges and corresponding points stored in a matrix. For example:
You can then iterate through these and do what you want with them (e.g. store them to a file).