My graph comes out to be gray, not coloured using AbsArgPlot function in Mathematica. What is the reason for not getting a coloured graph or what I can deduce from it about the complex function that I considered.
Basically I am using a complex Lagrange interpolating polynomial.
I am including the graph.
The Exp[z] gives a good coloured graph given below.
z = Cos[j] + I*Sin[j];
AbsArgPlot[{Exp[z]}, {j, 0, 2 Pi}, Filling -> Axis]
The interpolating polynomial that I created using the nodes on the unit circle produces the below graph which comes out to be gray.
z = Cos[j] + I*Sin[j];
AbsArgPlot[{LR}, {j, 0, 2 Pi}, Filling -> Axis]
,
where LR is the interpolatory polynomial I created.
My interpolating polynomial approximates Exp[z] nicely as the graph turns out to be similar. but what can I deduce with this gray colour coming .


LR? You reference it is an interpolation, but you have not given the definition of this interpolation, which is essential for the solution of this problem. Thanks! – CA Trevillian May 09 '21 at 22:49