I'm trying to graph this function, the plot shows up but has no content any help would be appreciated.
1 + 2 v^2 (1 - Cos[x]) + 2 vSin[x]
Manipulate[Plot[T, {x, 0, 6 Pi}], {v, 1, 100}]
I'm trying to graph this function, the plot shows up but has no content any help would be appreciated.
1 + 2 v^2 (1 - Cos[x]) + 2 vSin[x]
Manipulate[Plot[T, {x, 0, 6 Pi}], {v, 1, 100}]
T? Why are you multiplying something by yourManipulatecall? Read the docs. – b3m2a1 Nov 17 '17 at 05:17T0[v_] := 1 + 2 v^2 (1 - Cos[x]) + 2 v Sin[x]; Manipulate[ Plot[T0[v], {x, 0, 6 Pi}], {v, 1, 100} ]You need to define a function first to plot it. – Nasser Nov 17 '17 at 05:17