Why are the sliders in the following code not affecting the plot? (Without using Manipulate)
Module[{t, o, z}, f[t]];
{Slider[ Dynamic[o], {1, 5, 0.1}], Dynamic[o]}
{Slider[ Dynamic[z], {0.1, 1.4, 0.1}], Dynamic[z]}
{Slider[ Dynamic[Ts], {5, 20, 1}], Dynamic[Ts]}
tf[o_, z_] := TransferFunctionModel[ω^2/(s^2 + 2 z o s + o^2), s];
f[t] = OutputResponse[tf[o, z], UnitStep[t], t];
Plot[f[t], {t, 0, T}, PlotRange -> {{0, T}, {0, 2}}]


Module[{t, o, z}, f[t]];on its own? what it means like this? code give error running. fix bug in code, not good to post code with coding error. bad for other people to waste time on it. – Robert H Jul 13 '12 at 4:32