Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerlya02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]] Former-commit-id:06a8b51d6d
Former-commit-id:8e80217e59
[formerly3360eb6c5f
] Former-commit-id:377dcd10b9
23 lines
479 B
Python
Executable file
23 lines
479 B
Python
Executable file
import numpy as np
|
|
from mpl_toolkits.mplot3d import Axes3D
|
|
import matplotlib.pyplot as plt
|
|
|
|
|
|
def randrange(n, vmin, vmax):
|
|
return (vmax-vmin)*np.random.rand(n) + vmin
|
|
|
|
fig = plt.figure()
|
|
ax = Axes3D(fig)
|
|
n = 100
|
|
for c, zl, zh in [('r', -50, -25), ('b', -30, -5)]:
|
|
xs = randrange(n, 23, 32)
|
|
ys = randrange(n, 0, 100)
|
|
zs = randrange(n, zl, zh)
|
|
ax.scatter(xs, ys, zs, c=c)
|
|
|
|
ax.set_xlabel('X Label')
|
|
ax.set_ylabel('Y Label')
|
|
ax.set_zlabel('Z Label')
|
|
|
|
plt.show()
|
|
|