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

8 visualizaciones (últimos 30 días)
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.

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre MRI en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by