How to remove the warning?
6 ビュー (過去 30 日間)
古いコメントを表示
>> LFToolboxPath = fileparts(mfilename('fullpath'));
fprintf('Adding paths for LF Toolbox ');
addpath( LFToolboxPath );
addpath( fullfile(LFToolboxPath, 'SupportFunctions') );
addpath( fullfile(LFToolboxPath, 'SupportFunctions', 'CameraCal') );
fprintf('%s, done.\n', LFToolboxVersion)
Adding paths for LF Toolbox Warning: Name is nonexistent or not a directory: SupportFunctions.
> In path at 115
In addpath at 95
Warning: Name is nonexistent or not a directory: SupportFunctions\CameraCal.
> In path at 115
In addpath at 95
v0.4 released 12-Feb-2015, done.
0 件のコメント
採用された回答
Walter Roberson
2019 年 4 月 14 日
編集済み: Walter Roberson
2019 年 4 月 14 日
Do not execute that code by copying and pasting it into the command window. It needs to be executed from inside a .m file that is in the same directory that the code for the toolbox is in.
その他の回答 (1 件)
Image Analyst
2019 年 4 月 14 日
See attached utility for turning off benign warning messages.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Search Path についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!