The RandomFunction generates an output in the form of TemporalData. How can I plot a scaled version of this data, e.g., all values divided by $n$ with time kept fixed? I read this post but couldn't find an answer.
Asked
Active
Viewed 128 times
3



s = RandomFunction[BinomialProcess[1/3], {0, 50}]; ListPlot[{s, s["PathStates"]/2}]– Dr. belisarius Nov 23 '15 at 23:45s = RandomFunction[BinomialProcess[1/3], {10, 50}]; ListPlot[{s, s/2}]– Gosia Nov 24 '15 at 00:02