I have the equation
$$\dot{x}=F(x(t);\mu,\lambda)=\mu x-\lambda x^2+3$$
and I want to use StreamPlot and Manipulate to vary $\lambda$ and $\mu$.
The code for an example how it should look like:
Manipulate[
StreamPlot[{y, -λ - μ x + x^3}, {x, -3, 3}, {y, -3, 3},
StreamScale -> Large,
PlotLabel -> Row[{"λ = ", λ, " , μ = ", μ}]],
{λ, -1, 1}, {μ, -1, 1}]
StreamPlot, which displays functions of two variables ($x$ and $y$)? – David G. Stork Mar 16 '17 at 18:47