You can define
x=0:0.01:10
and y=....
if s is constant you can plot this by using the plot(x,y) function.
If s changes, probably you will have different curves to plot in the same plot (probably with different colors).
So, insert the y definition in a for loop:
for s=3:6
y=...
plot(x,y); hold on;
end