📄 make_tables.m
字号:
% Function for calculating the different weight tables% for the interpolation. The tables are calculated according% to the parameters in this function and are stored in% the internal C-code.%% Input parameters: %% start_depth - Depth for start of image in meters% image_size - Size of image in meters% % start_of_data - Depth for start of data in meters% delta_r - Sampling interval for data in meters% N_samples - Number of samples in one envelope line% % theta_start - Angle for first line in image% delta_theta - Angle between individual lines% N_lines - Number of acquired lines% % scaling - Scaling factor from envelope to image% Nz - Size of image in pixels% Nx - Size of image in pixels%% Output: Nothing, everything is stored in the C program%% Calling: make_tables (start_depth, image_size, ...% start_of_data, delta_r, N_samples, ...% theta_start, delta_theta, N_lines, ...% scaling, Nz, Nx); %% Version 1.0, 14/2-1999, JAJ% Version 1.1, 11/9-2001, JAJ: Help text correctedfunction res = make_tables (start_depth, image_size, ... start_of_data, delta_r, N_samples, ... theta_start, delta_theta, N_lines, ... scaling, Nz, Nx)% Call the appropriate functionfast_int (1,start_depth, image_size, ... start_of_data, delta_r, N_samples, ... theta_start, delta_theta, N_lines, ... scaling, Nz, Nx); % Return nothingret=0;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -