Last active
October 26, 2021 16:56
-
-
Save b0noI/f2a353e8d3fc788bac69c77f4aa298ec to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
def f(x): | |
return x * 2 + 1 | |
rng = np.random.default_rng(2021) | |
X = rng.random(1000) | |
Y = [f(x) for x in X] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment