Index exceeds matrix dimensions. Error in gtc21 (line 21) outputBits = mod(sum(shiftedValues(generatorPolynomials)), 2);
조회 수: 1 (최근 30일)
이전 댓글 표시
Index exceeds matrix dimensions.
Error in gtc21 (line 21)
outputBits = mod(sum(shiftedValues(generatorPolynomials)), 2);
댓글 수: 0
답변 (1개)
DGM
2024년 6월 30일
편집: DGM
2024년 6월 30일
Since you gave us no information, then the error message itself tells you everything that you could be told.
In whatever file gtc21.m is, the variable generatorPolynomials is ostensibly a scalar integer which is greater than the number of elements in shiftedValues, which is ostensibly an array of some unknown size. The index exceeds the number of elements in the array.
What size is shiftedValues, and why is generatorPolynomials greater than the number of elements in it? Nobody knows. Is gtc21.m your file, or is it some third party file that's being called improperly somewhere? Nobody knows.
댓글 수: 2
Walter Roberson
2024년 6월 30일
It is also possible that a value has been assigned to a variable named sum or to a variable named mod
DGM
2024년 6월 30일
That too.
In other words, somewhere there's an array, and somewhere there's an index. Either:
- the array is inappropriately sized for the index
- the index is inappropriate for the size of the array
- or the "array" isn't even supposed to be an array.
참고 항목
카테고리
Help Center 및 File Exchange에서 Performance and Memory에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!