my R2013a can not do xjview. May I know the reason?
1 回表示 (過去 30 日間)
古いコメントを表示
Wasna Madushanka Ediri Arachchi
2017 年 2 月 17 日
コメント済み: Steven Lord
2017 年 2 月 17 日
I previously used 2009 one and it was supported for xjview. Then I installed 2013 but now it shows some errors.
採用された回答
Walter Roberson
2017 年 2 月 17 日
The line giving you problems there is
[p pluginname e v] = fileparts(pluginfiles(k).name);
notice that there are four outputs there. That had to do with the file name structure on the DEC VMS operating system, which has not been supported by MATLAB for many years.
Go through the code, and in any call to fileparts that has four outputs, delete the last output. If you need to, you can set that variable name to '' (the empty string.) For example,
[p pluginname e] = fileparts(pluginfiles(k).name);
v = '';
There might be other changes needed. SPM8 is not entirely compatible with SPM5.
1 件のコメント
Steven Lord
2017 年 2 月 17 日
FYI according to the Release Notes we first told users to remove the fourth output argument in release R2010a, started issuing a warning in R2011a, and started throwing an error in R2011b.
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Electromechanical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!