Skip to content

Instantly share code, notes, and snippets.

@rvaghefi
Created January 13, 2021 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rvaghefi/82488d7af8deeca73f16747eb525033e to your computer and use it in GitHub Desktop.
Save rvaghefi/82488d7af8deeca73f16747eb525033e to your computer and use it in GitHub Desktop.
Generate Random Data
import numpy as np
n = 20
m = 100
k = 200
X = np.random.randn(m,n)
Y = np.random.randn(k,n)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment