I have the following code in Mathematica that gives me the plot I want but how do I display the solution vector or numerical solution in terms of the x vlaues and the corresponding y values in Mathematica? Thank you
lambda = ((8*0.15)/10);
m = (332/0.59) ;
a = 2;
b = 100;
Eqn = y''[x] + 2*y'[x]/x -(lambda^2)*Cosh[y[x]] == 0;
sol = NDSolveValue[ {Eqn, y'[a] == -m/(10*a^2), y[b] == 0}, y[x], {x, a, b}]
Plot[Evaluate[sol], {x, a, b}]
sol=...doesn't evaluate – Ulrich Neumann Mar 02 '22 at 21:24