need help with warning
Mostrar comentarios más antiguos
I am trying to do following which gives me warning and code does not execute any further. Please help resolve this
A = [91, 89, 90, 93, 95, 97]
A.switch1 = A <=91;
A.switch2 = A > 91,
I get following warning. How do i make it right? THanks
============================= Warning: Struct field assignment overwrites a value with class "double". See MATLAB R14SP2 Release Notes, Assigning Nonstructure Variables As Structures Displays Warning, for details.
Respuesta aceptada
Más respuestas (2)
Neesha
el 5 de Nov. de 2013
0 votos
1 comentario
Image Analyst
el 5 de Nov. de 2013
Warnings do not stop code, only errors do. Please accept my answer if you have no more questions. Thanks.
Neil Caithness
el 2 de Feb. de 2015
0 votos
From the latest release notes:
Assigning Structures to Nonstructures
Because of a bug, previous releases of MATLAB have allowed structure assignment to a nonempty nonstructure to overwrite the previous value. MATLAB continues to allow this in this release, but generates a warning message. In a future release, attempting this type of assignment will generate an error.
2 comentarios
Image Analyst
el 2 de Feb. de 2015
Are you talking about the 2015a prerelease? Because this code generates no warning in R2014b:
% Create a non-empty variable "a" that is not a structure.
a=10;
% Create a structure, str.
str.field1 = 20;
str.field2 = 'abc';
% Now assign structure str to nonempty, nonstructure "a"
a = str; % No warning message.
Matthias Goldgruber
el 22 de Dic. de 2015
You dont get a warning because you do something different!
Try the following:
a=10;
a.b=11;
Then you should get the same warning.
Categorías
Más información sobre Annotations en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!