Skip to content

Commit f937bc4

Browse files
committed
Matplotlib and Scipy notes updated
1 parent 66985f4 commit f937bc4

File tree

1 file changed

+5
-0
lines changed
  • 13-Appendix/01-Programming/02-Python

1 file changed

+5
-0
lines changed

13-Appendix/01-Programming/02-Python/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,3 +253,8 @@ def add_two_to_int(parameter):
253253
print("parameter must be an integer or float")
254254
```
255255

256+
## Data Generation
257+
258+
There are multiple ways to generate data in Python and some of them are as follows:
259+
260+
1. **Controlled by Number of Points**: `np.linspace(0, 10, 10)` takes in three arguments, the starting point, the ending point, and the number of points in between the two.

0 commit comments

Comments
 (0)