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

 Akzeptierte Antwort

Walter Roberson
Walter Roberson am 21 Mai 2012

1 Stimme

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.

Weitere Antworten (2)

Wayne King
Wayne King am 21 Mai 2012

0 Stimmen

See the help for intmax
Elsen
Elsen am 21 Mai 2012

0 Stimmen

I'm training data with a data length of 512 in the process of ANFIS, but why the warning is always there. As a result, my data can not be processed, thank you, please help me

1 Kommentar

Jan
Jan am 21 Mai 2012
It would be helpful if you post the complete error message, especially the line which causes the error.
Please insert this by editing the original message, not by creating an answer or comment.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Fuzzy Logic Toolbox finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by