Matlab run_functional test r2022a is failing with "unrecognized function or variable 'ippl'"
1 次查看(过去 30 天)
显示 更早的评论
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?
采纳的回答
SACHIN KHANDELWAL
2024-7-30
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!
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!