Warning in matlab
9 ビュー (過去 30 日間)
古いコメントを表示
Sorry, I want to ask about the warning 'Warning: FOR loop index is too large. Truncating to 2147483647 'in matlab R2009a 32Bit? what it means
0 件のコメント
採用された回答
Walter Roberson
2012 年 5 月 21 日
What the error means is that you have a "for" loop in which you are trying to do more than 2147483647 iterations. Your R2009a 32 bit MATLAB has a limitation that it is unable to do more than 2147483647 iterations in a single "for" loop.
You can possibly break the code up so that it only does 2147483647 iterations in any one loop.
If the problem is inside an ANFIS routine, then there is a possibility that you have made a programming mistake in your call. You should also be considering whether you should be training on the principle components (PCA) of the data rather than the entire 512 columns.
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!