Skip to content

Instantly share code, notes, and snippets.

View brandondube's full-sized avatar

Brandon Dube brandondube

View GitHub Profile
]q(X external_idqXcommandqXtsqe.K .}q(K}q(X__id__qKX external_idqXpythonqXtsqcdatetime
datetime
qC
 qqRq Xcommandq
Xtestq X __version__q KuK}q (hKhhhhC
  }qqRqh
X __version__qh KuK}q(hKhhhhC
 9zqqRqh
Xprint(__version__)qh KuK}q(hKhhhhC
 
import timeit
import numpy as np
from numpy.fft import fftshift, ifftshift, fft2
x, y = np.linspace(-1, 1, 128), np.linspace(-1, 1, 128)
xx, yy = np.meshgrid(x, y)
rho, phi = np.sqrt(xx**2 + yy**2), np.arctan2(yy, xx)
phase_arr = rho ** 2 * np.sin(phi)
complex_arr = np.exp(1j * 2 * np.pi * phase_arr)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brandondube
brandondube / Onion Ring Bokeh.ipynb
Created March 12, 2019 02:40
Onion Ring Bokeh.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brandondube
brandondube / numpy-cupy __array_function__ __array_ufunc__ timing.ipynb
Last active March 18, 2019 02:43
Numpy / Cupy __array_function__ performance loss
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brandondube
brandondube / mtp.py
Created June 21, 2019 12:27
matrix triple product DFT
def matrix_dft(f, alpha, npix, shift=None, unitary=False):
if np.isscalar(alpha):
ax = ay = alpha
else:
ax = ay = np.asarray(alpha)
f = np.asarray(f)
m, n = f.shape
if np.isscalar(npix):
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.