Skip to content
Snippets Groups Projects
Commit c6f324ec authored by aryan eftekhari's avatar aryan eftekhari
Browse files

Update README.md

parent 2f778800
No related tags found
No related merge requests found
......@@ -30,6 +30,7 @@ n = 100
l = .4
# generate a tridiagonal matrix
np.random.seed(1)
a = -0.5 * np.ones(p-1)
b = 1.25 * np.ones(p)
iC_star = np.diag(a,-1) + np.diag(b,0) + np.diag(a,1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment