Clear Filters
Clear Filters

toolboxの機能停止について

19 views (last 30 days)
Yuichi Sugiyama
Yuichi Sugiyama on 7 Dec 2018
Commented: Yuichi Sugiyama on 7 Dec 2018
toolboxの機能を停止させて、プログラムを動作させたいのですが
一番手軽で簡単な方法はありますでしょうか?
なるべくアンインストールなどしないで実現させたいと思っています。

Accepted Answer

Akiko
Akiko on 7 Dec 2018
アンインストールと完全に等価ではありませんが、特定の Toolbox のライセンスを一時的に無効にする、という意味で、license コマンドの checktout オプションを使用することもできます。
下記は、Statistics and Machine Learning Toolbox を無効にする方法です。
>> license('checkout','Statistics_Toolbox','disable')
>> nanmean(rand(5))
'nanmean' には Statistics and Machine Learning Toolbox が必要です。
詳しくは、license コマンドのヘルプドキュメント、また、Feature 名については、下記も参考にしてみてください。
コードがどの製品を使っているか、確認する目的であれば、下記も参考になると思います。
  1 Comment
Yuichi Sugiyama
Yuichi Sugiyama on 7 Dec 2018
ご回答、ありがとうございました。

Sign in to comment.

More Answers (0)

Products


Release

R2017b

Community Treasure Hunt

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

Start Hunting!