Skip to content
Snippets Groups Projects
Commit caf93852 authored by Nicola Vigano's avatar Nicola Vigano Committed by Nicola Vigano
Browse files

Shape-functions: small fixes

parent ddee3d49
No related branches found
No related tags found
No related merge requests found
......@@ -60,9 +60,9 @@ function sf = gtDefShapeFunctionsCreateNW(sampler, eta_resoltion, varargin)
oris_steps_z = linspace(oris_lims_min(3), oris_lims_max(3), oris_bounds_size(3));
oris_bounds = cell(oris_bounds_size);
for dx = 1:oris_bounds_size(1)
for dz = 1:oris_bounds_size(3)
for dy = 1:oris_bounds_size(2)
for dz = 1:oris_bounds_size(3)
for dx = 1:oris_bounds_size(1)
r_vec = [oris_steps_x(dx), oris_steps_y(dy), oris_steps_z(dz)];
oris_bounds{dx, dy, dz} = struct( ...
'phaseid', ref_gr.phaseid, ...
......
......@@ -2,7 +2,7 @@ function shape_funcs = gtDefShapeFunctionsFwdProjUVW(sampler, varargin)
conf = struct( ...
'recenter_sf', true, ...
'data_type', 'single', ...
'data_type', 'double', ...
'factor', 1, ...
'rspace_oversampling', 1, ...
'rspace_voxel_size', [1 1 1], ...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment