initial commit

This commit is contained in:
2026-08-07 15:56:42 +09:00
commit 91ad25aca9
1012 changed files with 159314 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
function [mask] = get_tomo_fourier_mask_3d( N_recon, angles )
mask = tomo.get_tomo_fourier_mask_2d(N_recon(2),[N_recon(1),N_recon(2)],angles);
mask = repmat(mask,[1,1,N_recon(3)]);
%mask = mask==0;
mask = ifftshift(mask);
end