Skip to content
Snippets Groups Projects
Commit e8afec4f authored by Joseph Ramsay's avatar Joseph Ramsay
Browse files

Re #20718 Actually updates random in ExportTimeSeriesLog

parent d4fe5c87
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,7 @@ Output: ...@@ -94,7 +94,7 @@ Output:
# Create a new log # Create a new log
testprop = mk.FloatTimeSeriesProperty("Temp") testprop = mk.FloatTimeSeriesProperty("Temp")
import random from numpy import random
random.seed(10) random.seed(10)
for i in range(60): for i in range(60):
randsec = random.randint(0, 59) randsec = random.randint(0, 59)
...@@ -121,7 +121,7 @@ Output: ...@@ -121,7 +121,7 @@ Output:
.. testoutput:: ExExpTempEvent .. testoutput:: ExExpTempEvent
Length of X = 2, Length of Y = 1. Length of X = 2, Length of Y = 1.
X[0] = 26089828000000.0, Y[0] = 2095.98009 X[0] = 26089801000000.0, Y[0] = 1958.93574
Number of events = 40 Number of events = 40
.. categories:: .. categories::
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment