フィルターのクリア

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

2 ビュー (過去 30 日間)
Qinwen
Qinwen 2023 年 11 月 28 日
コメント済み: Walter Roberson 2024 年 4 月 17 日
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 件のコメント
喜云
喜云 2024 年 4 月 17 日
I followed the code you provided and modified it, but it still doesn't work.
Walter Roberson
Walter Roberson 2024 年 4 月 17 日
@喜云 is it still giving an error about Unrecognized property gridline for class Axes ?

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

その他の回答 (0 件)

カテゴリ

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