mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 5682350bfd95a6abfc325b511c55d6e27b41476a
7 lines
159 B
Python
7 lines
159 B
Python
import numpy as np
|
|
import matplotlib.pyplot as plt
|
|
mu, sigma = 2, 0.5
|
|
v = np.random.normal(mu, sigma, 10000)
|
|
plt.hist(v, bins=50, density=1)
|
|
plt.show()
|
|
<caret> |