01-12-2017 05:24 PM
Use a while loop with a small delay and generate random numbers using box-muller and scale as needed. Wire to a chart. To get the last N points, read the chart history with a property node.
01-13-2017 07:22 AM
In this case, how do you know the average of the noise will be the desired one? In the box-muller is there any option to give the average amount? (I want the average of this noise at any period of time to be a certain given amount)
01-13-2017 11:37 AM
Box Muller will give you values of a normalized distribution (mean = 0, stdev=1), so you need to multiply with the desired standard deviation and add the desired offset to get a different mean. You simply need to scale it as required.