Where is radon and iradon in 2015b version ?

1 view (last 30 days)
I cannot use find "radon()" function in 2015b edition of matlab. Can somebody please tell where is it?
Thanks in advance.

Answers (2)

Star Strider
Star Strider on 3 Oct 2015
When I checked the documentation in my installation of R2015b, they were both in the Image Processing Toolbox.
See the documentation for radon.
  3 Comments
Star Strider
Star Strider on 3 Oct 2015
First, run these from the Command Window (or a script), and see if that solves the problem:
restoredefaultpath
rehash toolboxcache
If not, contact MathWorks Technical Support.
Steven Lord
Steven Lord on 3 Oct 2015
Before contacting Technical Support, check if you have Image Processing Toolbox installed. If it's not listed in the output of the VER function in your installation, you will need to install that toolbox (purchasing it if it's not already part of your license) to use RADON and IRADON.

Sign in to comment.


Image Analyst
Image Analyst on 4 Oct 2015
>> which radon
C:\Program Files\MATLAB\R2015b\toolbox\images\images\radon.m
>> which iradon
C:\Program Files\MATLAB\R2015b\toolbox\images\images\iradon.m
  1 Comment
Image Analyst
Image Analyst on 4 Oct 2015
What does this show:
% Check that user has the Image Processing Toolbox installed.
hasIPT = license('test', 'image_toolbox'); % license('test','Statistics_toolbox'), license('test','Signal_toolbox')
if ~hasIPT
% User does not have the toolbox installed.
message = sprintf('Sorry, but you do not seem to have the Image Processing Toolbox.\nDo you want to try to continue anyway?');
reply = questdlg(message, 'Toolbox missing', 'Yes', 'No', 'Yes');
if strcmpi(reply, 'No')
% User said No, so exit.
return;
end
end

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!