Effacer les filtres
Effacer les filtres

Index exceeds matrix dimensions. Error in gtc21 (line 21) outputBits = mod(sum(sh​iftedValue​s(generato​rPolynomia​ls)), 2);

18 vues (au cours des 30 derniers jours)
Amare
Amare le 29 Juin 2024 à 22:20
Commenté : DGM le 30 Juin 2024 à 7:12
Index exceeds matrix dimensions.
Error in gtc21 (line 21)
outputBits = mod(sum(shiftedValues(generatorPolynomials)), 2);

Réponses (1)

DGM
DGM le 30 Juin 2024 à 1:31
Modifié(e) : DGM le 30 Juin 2024 à 1:32
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 commentaires
Walter Roberson
Walter Roberson le 30 Juin 2024 à 2:34
It is also possible that a value has been assigned to a variable named sum or to a variable named mod
DGM
DGM le 30 Juin 2024 à 7:12
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.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by