my R2013a can not do xjview. May I know the reason?

4 ビュー (過去 30 日間)
Wasna Madushanka Ediri Arachchi
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.
  3 件のコメント
Wasna Madushanka Ediri Arachchi
Wasna Madushanka Ediri Arachchi 2017 年 2 月 17 日
編集済み: Walter Roberson 2017 年 2 月 17 日
I copied spm8 from another machine.
I got errors as follows;
Error using fileparts
Too many output arguments.
Error in xjview>reset_st (line 9320)
[p pluginname e v] = fileparts(pluginfiles(k).name);
Error in xjview>my_reset (line 8622)
reset_st;
Error in xjview>spm_orthviews (line 8304)
my_reset;
Error in xjview>spm_sections (line 6577)
spm_orthviews('Reset');
Error in xjview>cuixuSectionView (line 6543)
[hgraph, hSection, hcolorbar] = spm_sections(SPM,hReg,targetFile,handles.sectionViewPosition);
Error in xjview>Draw (line 6409)
[hReg, hSection, hcolorbar] =
cuixuSectionView(mniCoord,abs(intensity),sectionViewTargetFile,hObject,handles);
Error in xjview>CallBack_allIntensityRadio (line 3639)
[handles.hReg, handles.hSection, handles.hcolorbar] = Draw(handles.currentDisplayMNI,
handles.currentDisplayIntensity, hObject, handles);
Error in xjview>CallBack_sectionViewListbox (line 3705)
CallBack_allIntensityRadio(hObject, eventdata, 'c');
Error while evaluating uicontrol Callback
Wasna Madushanka Ediri Arachchi
Wasna Madushanka Ediri Arachchi 2017 年 2 月 17 日
Thanks. I downloaded new released of xjview and now its working properly

サインインしてコメントする。

採用された回答

Walter Roberson
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
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 件)

Wasna Madushanka Ediri Arachchi
Wasna Madushanka Ediri Arachchi 2017 年 2 月 17 日
Many Thanks Mr. Walter Roberson..

カテゴリ

Help Center および File ExchangeMRI についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by