Created
June 18, 2020 15:07
-
-
Save jbusecke/8e10857cf3c25723e04ec657b3deb44c to your computer and use it in GitHub Desktop.
test.py
This file contains hidden or 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
dc_dx = c[:,1:] - c[:,0:-1] / dx[:,1:] | |
#or was it this way? | |
dc_dx = c[1:,:] - c[0:-1,:] / dx[1:,:] | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment