view fourInv.m @ 610:b7b3c11fab4d feature/utux2D

Add interpolation to scheme
author Martin Almquist <malmquist@stanford.edu>
date Sat, 14 Oct 2017 22:38:42 -0700
parents f6ada1719420
children
line wrap: on
line source

function u = ifour(u_hat)
    u_hat = ifftshift(u_hat);
    u = ifft(u_hat);
end