Created
May 22, 2015 05:36
-
-
Save mblondel/379b404de355a095d448 to your computer and use it in GitHub Desktop.
Einstein sum notation
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 | |
rng = np.random.RandomState(0) | |
print "Trace" | |
A = rng.rand(3, 3) | |
print np.trace(A) | |
print np.einsum("ii", A) | |
print "Dot product" | |
a = rng.rand(5) | |
b = rng.rand(5) | |
print np.dot(a, b) | |
print np.einsum("i,i", a, b) | |
print "Outer product" | |
print np.outer(a, b) | |
print np.einsum("i,j", a, b) | |
print "Identity" | |
B = rng.rand(3, 2) | |
print B | |
print np.einsum("ij", B) | |
print "Transpose" | |
print B.T | |
print np.einsum("ji", B) | |
print "Sum" | |
print np.einsum('i->', a) | |
print np.sum(a) | |
print "Diag" | |
print np.einsum("ii->i", A) | |
print np.diag(A) | |
print "Matrix product" | |
print np.einsum("ij,jk", A, B) | |
print np.dot(A, B) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
is it a matlab code? if not, than what is the name of this software