Why isn't FANBEAM linear?

2 Ansichten (letzte 30 Tage)
Matt J
Matt J am 31 Okt. 2013
Kommentiert: Matt J am 20 Dez. 2019
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 Kommentare
Matt J
Matt J am 9 Feb. 2018
Sill there in R2017b...
Matt J
Matt J am 20 Dez. 2019
Sill there in R2019b...

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by