Clear Filters
Clear Filters

Matlab run_functional test r2022a is failing with "unrecognized function or variable 'ippl'"

13 views (last 30 days)
Matlab test suite r2021b is passing but when we run r2022a, run_functional.m fails almost immediately with the error message in the Summary. Here is the code where the issue is found at the beginning of run_functional.
%% Show info about IPP
[isIPPOn, ippVersion] = ippl; disp('IPP enabled: '); disp(isIPPOn); disp('IPP version:'); disp(ippVersion);
Has the function ippl been replaced by another function to detect the presence of Intel® Integrated Performance Primitives on the test system?
  3 Comments

Sign in to comment.

Accepted Answer

SACHIN KHANDELWAL
SACHIN KHANDELWAL on 30 Jul 2024 at 4:35
Hi @Paul,
It seems that you have not licensed the Image Processing Toolbox for the current MATLAB version. You may want to check the products that are licensed. You can use the following MATLAB command:
>> ver -support
After running the above command, you will see the products associated with the license.
Additionally, you can use the "license" function to list the features checked out in the current MATLAB session.
>> license('inuse')
Refer the following MathWorks documentation to learn more about the "license" function : https://www.mathworks.com/help/matlab/ref/license.html
Hope it helps!

More Answers (0)

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!