Error using genfis function in Grid Partitioning
6 ビュー (過去 30 日間)
古いコメントを表示
NATALIA ARREGUI GONZALEZ
2020 年 3 月 29 日
コメント済み: NATALIA ARREGUI GONZALEZ
2020 年 4 月 3 日
Hello guys,
I am trying to conduct a Time Series Prediction using ANFIS.
When I use the genfis function, I get the following error when I work with both Grid Partitioning and Substractive Clustering FIS:
Error using genfis>validateXin (line 90)
Expected Xin to be finite.
Error in genfis (line 49)
validateXin(Xin);
My input is formed by 8 variables with 52584 observations each. I have read that this error may be caused by lack of memory in the computer.
I would highly appreciate it if anyone knew if the problem may be caused by something else, or how could I solve it. I am learning to use Fuzzy Logic in Matlab and I would be grateful for any help.
I have the Fuzzy Logic Designer and Neuro-Fuzzy Designer Toolboxes.
Many thanks,
Natalia
0 件のコメント
採用された回答
Dhananjay Kumar
2020 年 3 月 31 日
Check with this function to check if the issue is related to the data: mustBeFinite
3 件のコメント
Dhananjay Kumar
2020 年 4 月 1 日
Hi Natalia,
You can check the finiteness with mustBeFinite function like this:
>> a = mustBeFinite(Inputs)
Then value of a will be either true or false depending on the data in the Inputs.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Fuzzy Logic Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!