3

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.

2 Answers2

4
td = RandomFunction[WienerProcess[], {0, 1, .01}, 10];

GraphicsColumn[{ListLinePlot[td], ListLinePlot[td/10]}]

Out

Karsten7
  • 27,448
  • 5
  • 73
  • 134
3
td = RandomFunction[WienerProcess[], {0, 1, .01}, 10];

ListLinePlot[td]

enter image description here

Scaled

ListLinePlot[Normal@td /. {a_, b_} :> {a, b/10}]

enter image description here

eldo
  • 67,911
  • 5
  • 60
  • 168