@@ -2331,7 +2331,7 @@ def pts_to_prestep(x, *args):
2331
2331
2332
2332
Given a set of N points convert to 2 N -1 points
2333
2333
which when connected linearly give a step function
2334
- which changes values at the begining the intervals.
2334
+ which changes values at the beginning of the intervals.
2335
2335
2336
2336
Parameters
2337
2337
----------
@@ -2371,7 +2371,7 @@ def pts_to_poststep(x, *args):
2371
2371
2372
2372
Given a set of N points convert to 2 N -1 points
2373
2373
which when connected linearly give a step function
2374
- which changes values at the begining the intervals.
2374
+ which changes values at the end of the intervals.
2375
2375
2376
2376
Parameters
2377
2377
----------
@@ -2392,7 +2392,7 @@ def pts_to_poststep(x, *args):
2392
2392
2393
2393
Examples
2394
2394
--------
2395
- >> x_s, y1_s, y2_s = pts_to_prestep (x, y1, y2)
2395
+ >> x_s, y1_s, y2_s = pts_to_poststep (x, y1, y2)
2396
2396
"""
2397
2397
# do normalization
2398
2398
vertices = _step_validation (x , * args )
@@ -2412,7 +2412,7 @@ def pts_to_midstep(x, *args):
2412
2412
2413
2413
Given a set of N points convert to 2 N -1 points
2414
2414
which when connected linearly give a step function
2415
- which changes values at the begining the intervals.
2415
+ which changes values at the middle of the intervals.
2416
2416
2417
2417
Parameters
2418
2418
----------
@@ -2433,7 +2433,7 @@ def pts_to_midstep(x, *args):
2433
2433
2434
2434
Examples
2435
2435
--------
2436
- >> x_s, y1_s, y2_s = pts_to_prestep (x, y1, y2)
2436
+ >> x_s, y1_s, y2_s = pts_to_midstep (x, y1, y2)
2437
2437
"""
2438
2438
# do normalization
2439
2439
vertices = _step_validation (x , * args )
0 commit comments