unable to use ICASSO in GIFT with Error using matlab.gra​​phics.axi​s​.Axes/se​t

2 次查看(过去 30 天)
I am using MATLAB R2023b and GIFT v4.0.4.11. I cannot use ICASSO since at the end of running analysis with ICASSO I had this Error and cannot display the GUI. Is this a version problem or something else?
......................................
Group ICA Error Information:
Error using matlab.graphics.axis.Axes/set
Unrecognized property gridline for class Axes.
Error in ==> icassoDendrogram at 102
Error in ==> icassoShow at 264
Error in ==> icatb_calculateICA at 352
Error in ==> icatb_runAnalysis at 429
Error in ==> icatb_icasso at 134
Error in ==> icatb_utilities at 25
......................................
Error using icatb_displayErrorMsg
Error in icatb_runAnalysis (line 557)
icatb_displayErrorMsg;
Error in icatb_icasso (line 134)
sesInfo = icatb_runAnalysis(sesInfo, 4);
Error in icatb_utilities (line 25)
icatb_icasso;
Error while evaluating Menu Callback.

采纳的回答

Walter Roberson
Walter Roberson 2023-11-28
In icassoDendrogram.m the code line
set(gca,'xtick',t,'ytick',t,'xticklabel','','yticklabel','', ...
'gridline','-','xcolor','r','ycolor','r');
needs to be changed to
set(gca,'xtick',t,'ytick',t,'xticklabel','','yticklabel','', ...
'gridlinestyle','-','xcolor','r','ycolor','r');
  3 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MRI 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by