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

45 views (last 30 days)
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.

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 22 Apr 2024 at 0:00
Edited: MathWorks Support Team on 24 Apr 2024 at 15:09
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 Comment
Nicholas Ayres
Nicholas Ayres on 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!

Sign in to comment.

More Answers (1)

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

Products


Release

R2024a

Community Treasure Hunt

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

Start Hunting!