LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

how to create a noisy signal in Labview with a given average amplitude and visualize it?

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.

Message 11 of 13
(635 Views)

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)

0 Kudos
Message 12 of 13
(621 Views)

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.

Message 13 of 13
(607 Views)