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

Shape-functions: renamed projection function

parent 8b19c2ec
No related branches found
No related tags found
No related merge requests found
function bl = gtDefFwdProjGvdm(grain, ref_sel, gv, fedpars, parameters, det_ind, verbose)
function bl = gtDefFwdProjGvdm2UVW(grain, ref_sel, gv, fedpars, parameters, det_ind, verbose)
if (~exist('det_ind', 'var'))
det_ind = 1;
......
......@@ -109,7 +109,7 @@ function shape_funcs = gtDefShapeFunctionsFwdProj(sampler, varargin)
shape_funcs{ii_g} = gtDefFwdProjGvdm2NW(or, sel_bls, or_gv, ...
fedpars, sampler.parameters, eta_step, det_ind, false);
case 'uvw'
shape_funcs{ii_g} = gtDefFwdProjGvdm(or, sel_bls, or_gv, ...
shape_funcs{ii_g} = gtDefFwdProjGvdm2UVW(or, sel_bls, or_gv, ...
fedpars, sampler.parameters, det_ind, false);
end
......
......@@ -227,7 +227,7 @@ for n = 1:num_dets
fprintf(' - Simulating true ("measured") blob intensities..')
c = tic();
bl = gtDefFwdProjGvdm(grain, ref_inc, gv, fedpars, parameters, n);
bl = gtDefFwdProjGvdm2UVW(grain, ref_inc, gv, fedpars, parameters, n);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Assembling the final proj structure
......
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