Mercurial > repos > public > sbplib
view four.m @ 1346:464e6f65c2c6 feature/poroelastic
Refactor computation of borrowing from C. Update to correct number of boundary points for borrowing from R.
author | Martin Almquist <martin.almquist@it.uu.se> |
---|---|
date | Tue, 30 Apr 2024 14:18:47 +0200 |
parents | f6ada1719420 |
children |
line wrap: on
line source
% four returns the fourier transform u_hat of the function u and the frequencies w function [w, u_hat] = four(x, u) u_hat = fft(u); N = length(x); L = x(end) - x(1); k = shift_k(0:N-1); u_hat = fftshift(u_hat); dw = 2*pi/L; w = dw*k; end function k_shifted = shift_k(k) N = length(k); k_shifted = [-floor(N/2):-1, 0, 1:ceil(N/2)-1]; end