I have a parametric differential equation:
sol = ParametricNDSolve[{a.p[t]/(1 -b.p[t]) == c.p'[t], p'[0] == 0},p,{t, 0, 10}, {a,b,c}]
I'd like to plot solutions with different values of parameter a:
Plot[Evaluate[Table[sol[a, 1, 2][t], {a, 0, 1, 0.1}]], {t, 0, 100}]
But this (even with other values for the parameter and different ranges for t) just gives me two axes and nothing else! Is there another way to plot this?
Thanks