Effacer les filtres
Effacer les filtres

Why do I receive a warning about a value indexed with no subscripts?

17 vues (au cours des 30 derniers jours)
Why do I receive the warning below that says a value was indexed with no subscripts, and this will be an error in a future release? 
Warning: A value of class "<some class>" was indexed with no subscripts
specified. Currently the result of this operation is the indexed value
itself, but in a future release, it will be an error.

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 22 Avr 2024
Modifié(e) : MathWorks Support Team le 24 Avr 2024
Starting with MATLAB R2023a, the behavior of indexing with no subscripts remains the same and does not error, but the warning no longer appears. Using the warning command to turn the warning on or off has no effect. For more information, see the linked MATLAB release note:
The source of a warning with the structure is code that uses indexing into variables with empty parentheses. This warning message is 'off' by default. In MATLAB R2017b, you can reproduce this warning by turning the warning on and indexing into an array without a subscript.
>> a = zeros(1, 3);
>> warning("on", "MATLAB:subscripting:noSubscriptsSpecified")
>> a()
Warning: A value of class "double" was indexed with no subscripts specified. Currently the result of this operation is the indexed value itself, but in a future release, it will
be an error. 
ans =
     0     0     0
If you are using MATLAB R2022b or earlier releases, you can turn off this warning. Execute this command in MATLAB to turn off the warning:
>> warning("off","MATLAB:subscripting:noSubscriptsSpecified");
  1 commentaire
Nicholas Ayres
Nicholas Ayres le 22 Oct 2020
I'm working within the app editor and keep receiving this warning when I'm pressing buttons within the editor.
I assume the code that runs the editor must be the thing triggering this warning? as my code does not use the above. Hopefully the whole editor does not break in a future release!

Connectez-vous pour commenter.

Plus de réponses (1)

James Lebak
James Lebak le 26 Mar 2024
This warning was removed in R2023a. More details are in the release notes.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits


Version

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by