Clear Filters
Clear Filters

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

8 views (last 30 days)
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.

Accepted Answer

Walter Roberson
Walter Roberson on 28 Nov 2023
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 Comments
喜云
喜云 on 17 Apr 2024 at 13:32
I followed the code you provided and modified it, but it still doesn't work.
Walter Roberson
Walter Roberson on 17 Apr 2024 at 20:37
@喜云 is it still giving an error about Unrecognized property gridline for class Axes ?

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!