improved readability for 'point by point distances', numpy.atleast_2d can take multiple arguments
This commit is contained in:
@@ -498,7 +498,7 @@ print(Z)
|
||||
|
||||
```python
|
||||
Z = np.random.random((10,2))
|
||||
X,Y = np.atleast_2d(Z[:,0]), np.atleast_2d(Z[:,1])
|
||||
X,Y = np.atleast_2d(Z[:,0], Z[:,1])
|
||||
D = np.sqrt( (X-X.T)**2 + (Y-Y.T)**2)
|
||||
print(D)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user