Error using rng (line 109)
The current random number generator is the legacy generator. This is because you have executed a command such as rand('state',0), which activates MATLAB's legacy random number behavior. You may not use RNG to reseed the legacy random number generator.
Use rng('default') to reinitialize the random number generator to its startup configuration, or call RNG using a specific generator type, such as rng(seed,'twister').
data points
Do you need a new random integer between 1 and 100 every day? Well this trend is for you! Over time, we will also verify that these random numbers have no trend.
| Time Recorded (time1276) | Data (data1276) |
|---|---|
| 10 Jan 2013 06:00:28 | |
| 09 Jan 2013 06:00:25 | [16] |
| 08 Jan 2013 06:00:24 | [15] |
| 07 Jan 2013 06:00:28 | [9] |
| 06 Jan 2013 06:00:25 | [57] |
rng('shuffle') % Every day I'm shufflin'.
updatetrend(randi(100));
0 comments