@@ -178,13 +178,13 @@ cdef class RandomState:
178
178
179
179
Seed the generator.
180
180
181
- This method is called when `RandomState` is initialized. It can be
182
- called again to re-seed the generator. For details, see `RandomState`.
181
+ This method is called when `` RandomState` ` is initialized. It can be
182
+ called again to re-seed the generator. For details, see `` RandomState` `.
183
183
184
184
Parameters
185
185
----------
186
186
seed : int or array_like, optional
187
- Seed for `RandomState`.
187
+ Seed for `` RandomState` `.
188
188
Must be convertible to 32 bit unsigned integers.
189
189
190
190
See Also
@@ -219,13 +219,13 @@ cdef class RandomState:
219
219
220
220
Seed the generator.
221
221
222
- This method is called when `RandomState` is initialized. It can be
223
- called again to re-seed the generator. For details, see `RandomState`.
222
+ This method is called when `` RandomState` ` is initialized. It can be
223
+ called again to re-seed the generator. For details, see `` RandomState` `.
224
224
225
225
Parameters
226
226
----------
227
227
val : int, optional
228
- Seed for `RandomState`.
228
+ Seed for `` RandomState` `.
229
229
230
230
Notes
231
231
-----
@@ -253,13 +253,13 @@ cdef class RandomState:
253
253
254
254
Seed the generator.
255
255
256
- This method is called when `RandomState` is initialized. It can be
257
- called again to re-seed the generator. For details, see `RandomState`.
256
+ This method is called when `` RandomState` ` is initialized. It can be
257
+ called again to re-seed the generator. For details, see `` RandomState` `.
258
258
259
259
Parameters
260
260
----------
261
261
val : int, optional
262
- Seed for `RandomState`.
262
+ Seed for `` RandomState` `.
263
263
inc : int, optional
264
264
Increment to use for producing multiple streams
265
265
@@ -363,7 +363,7 @@ cdef class RandomState:
363
363
364
364
Return a tuple representing the internal state of the generator.
365
365
366
- For more details, see `set_state`.
366
+ For more details, see `` set_state` `.
367
367
368
368
Parameters
369
369
----------
@@ -386,7 +386,7 @@ cdef class RandomState:
386
386
387
387
Notes
388
388
-----
389
- `set_state` and `get_state` are not needed to work with any of the
389
+ `` set_state`` and `` get_state` ` are not needed to work with any of the
390
390
random distributions in NumPy. If the internal state is manually altered,
391
391
the user should know exactly what he/she is doing.
392
392
@@ -410,7 +410,7 @@ cdef class RandomState:
410
410
411
411
Return a tuple representing the internal state of the generator.
412
412
413
- For more details, see `set_state`.
413
+ For more details, see `` set_state` `.
414
414
415
415
Returns
416
416
-------
@@ -428,7 +428,7 @@ cdef class RandomState:
428
428
429
429
Notes
430
430
-----
431
- `set_state` and `get_state` are not needed to work with any of the
431
+ `` set_state`` and `` get_state` ` are not needed to work with any of the
432
432
random distributions in NumPy. If the internal state is manually altered,
433
433
the user should know exactly what he/she is doing.
434
434
@@ -471,7 +471,7 @@ cdef class RandomState:
471
471
472
472
Notes
473
473
-----
474
- `set_state` and `get_state` are not needed to work with any of the
474
+ `` set_state`` and `` get_state` ` are not needed to work with any of the
475
475
random distributions in NumPy. If the internal state is manually altered,
476
476
the user should know exactly what he/she is doing.
477
477
@@ -559,7 +559,7 @@ cdef class RandomState:
559
559
560
560
Results are from the "continuous uniform" distribution over the
561
561
stated interval. To sample :math:`Unif[a, b), b > a` multiply
562
- the output of `random_sample` by `(b-a)` and add `a`::
562
+ the output of `` random_sample` ` by `(b-a)` and add `a`::
563
563
564
564
(b - a) * random_sample() + a
565
565
0 commit comments