Toolboxes installed and licensed, but not in use
13 次查看(过去 30 天)
显示 更早的评论
Why are my toolboxes not in use when they are licensed and installed?
>> ver
-----------------------------------------------------------------------------------------------------
MATLAB Version: 9.11.0.1873467 (R2021b) Update 3
MATLAB License Number: redacted
Operating System: macOS Version: 11.6.4 Build: 20G417
Java Version: Java 1.8.0_202-b08 with Oracle Corporation Java HotSpot(TM) 64-Bit Server VM mixed mode
-----------------------------------------------------------------------------------------------------
MATLAB Version 9.11 (R2021b)
Image Processing Toolbox Version 11.4 (R2021b)
Mapping Toolbox Version 5.2 (R2021b)
Optimization Toolbox Version 9.2 (R2021b)
Statistics and Machine Learning Toolbox Version 12.2 (R2021b)
>> license('inuse')
matlab
>> license('test','MAP_Toolbox')
ans =
1
2 个评论
Les Beckham
2022-4-7
编辑:Les Beckham
2022-4-7
It probably depends on your license type, but I'm pretty sure that if you haven't used any tools from a particular toolbox in your current Matlab session, it won't check out a license for that toolbox. So, you would see the behavior you describe.
You could try
license('checkout','MAP_Toolbox')
license('test','MAP_Toolbox')
采纳的回答
Steven Lord
2022-4-7
I'm not entirely certain what your concern is. Are you wondering why license inuse doesn't list all of the products that appear in the output of ver? If so the explanation is simple: you haven't done anything in your MATLAB session that required functionality from that toolbox yet.
You've obviously called functions from MATLAB (if nothing else the license function is part of MATLAB) but you haven't called functions from any other product (or if you have, you did so long enough ago that the toolbox license was returned to the license server.) In your example, did you call any Mapping Toolbox functions before running the first of the license inuse calls?
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!