fix spelling error; suggestion for an alternative answer generating one less element, but obviously no great computational advantage

This commit is contained in:
Jayeol Chun
2017-07-04 00:34:47 -04:00
parent 334a5266f8
commit a7010265f7
4 changed files with 4 additions and 4 deletions

View File

@@ -369,7 +369,7 @@ print(Z)
```python
Z = np.linspace(0,1,12,endpoint=True)[1:-1]
Z = np.linspace(0,1,11,endpoint=False)[1:]
print(Z)
```