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

45 次查看(过去 30 天)
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.

采纳的回答

MathWorks Support Team
MathWorks Support Team 2024-4-22,0:00
编辑:MathWorks Support Team 2024-4-24,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 个评论
Nicholas Ayres
Nicholas Ayres 2020-10-22
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!

请先登录,再进行评论。

更多回答(1 个)

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

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

产品


版本

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by