Skip to content

Instantly share code, notes, and snippets.

@tsbertalan
Created December 29, 2013 18:25
Show Gist options
  • Save tsbertalan/8173190 to your computer and use it in GitHub Desktop.
Save tsbertalan/8173190 to your computer and use it in GitHub Desktop.
import numpy as np
import scipy.linalg
n = 130
r = np.array(np.random.normal(size=(n, n)), dtype=np.float32)
e = scipy.linalg.eig(r, left=False, right=False)
print e.mean()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment