Why isn't FANBEAM linear?

1 次查看(过去 30 天)
Matt J
Matt J 2013-10-31
评论: Matt J 2019-12-20
From the test below (R2013a), it appears that the FANBEAM tomographic projection function doesn't satisfy linearity/superposition with high accuracy
errfunc=@(a,b) norm(a(:)-b(:))/norm(b(:));
I1=rand(100);
I2=rand(100);
F=@(z) fanbeam(z,100);
>> errfunc(F(I1)+F(I2) , F(I1+I2)) %relative error calculation
ans =
0.0015
Conversley, the RADON tomographic projector shows a lot more linearity,
R=@(z) radon(z);
>> errfunc(R(I1)+R(I2) , R(I1+I2))
ans =
9.4304e-16
Why is this?
  3 个评论
Matt J
Matt J 2018-2-9
Sill there in R2017b...
Matt J
Matt J 2019-12-20
Sill there in R2019b...

请先登录,再进行评论。

回答(0 个)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by