I found a function with a "secret" input, which someone can perhaps explain? What could be the reason? Are there many cases of such a thing?
In the documented syntax of radon
function, there are two ways to call the function - the conventional one with inputs of I
and THETA
, (for image and desired projection angles), and also an option to omit THETA
, and give only I
as input.
But in the comments inside the radon.m
file, there is another part at the end, that is described as "grandfathered syntax". This allows three inputs, including also the number of desired projections. And, it really works!
So, why isn't this documented? Has it been available in the past, and then deleted/changed (as "grandfathered syntax" would suggest)? So why does this still work?
And, another question about radon.m
:
The main part of the function is computed by calling another function, called radonc
. What is it? Where does it reside? I can't find it, or any mention of it anywhere.