I have a function in the form of a Series from a prior calculation:
sol2D = SeriesData[a, 0, {Rational[3, 16] Pi,
Rational[-5, 2], Rational[3, 4] Pi}, 0, 3, 2]
When I use Normal and substitute values for a, it works just fine:
Normal[sol2D] /. a -> 5.107142857142856`*^-6
gives
0.583411
I would like to Plot this function so I can compare it to my expected result.
Plot[{Normal[sol2D]}, {a, 0, 1}]
But when I try to plot it, I get an error message: "SeriesData::ssdn: Attempt to evaluate a series at the number 5.107142857142856`*^-6. Returning Indeterminate." and many similar errors.
How do I plot my series without getting these errors?
Plot[Evaluate@Normal[sol2D], {a, 0, 1}]– Syed May 14 '23 at 03:48