Dear all
when I was running "ASM_2D_example.m",
I have some questions about "ASM Functions\ASM_ApplyModel2D.m ":
In the file
code number:66-70
"for k=1:size(Itest,3),
coffset=(k-1)*(2*options.k+1);
coffset2=(k-1)*(options.ns*2+1);
gi(1+coffset:2*options.k+1+coffset)=gt(i+coffset2:2*options.k+i+coffset2,j);
end"
I have made some changes about "coffset2" as follows:
coffset2=(k-1)*((options.k+options.ns)*2+1);
But it does not get a correct resoult,
So I want to know how to align "gt",
thanks.