7 lines
132 B
Python
7 lines
132 B
Python
#!/usr/bin/env python3
|
|
|
|
import numpy as np
|
|
|
|
gamma = 2.2
|
|
out = np.linspace(0, 1, 17) ** 2.2
|
|
print(np.round(out * 24000).astype(int))
|