Borrar filtros
Borrar filtros

??? Attempt to reference field of non-structure array.

1 visualización (últimos 30 días)
João Lima
João Lima el 23 de Mayo de 2016
Respondida: Walter Roberson el 23 de Mayo de 2016
Hi, my code is returning this error
??? Attempt to reference field of non-structure
array.
the code is here:
if handles.PCMM.Value == 1
metodo_compra = 1;
end
I'm using MATLAB 2009b, but if i go to 2015b the code works.
Can anybody help me?

Respuesta aceptada

Walter Roberson
Walter Roberson el 23 de Mayo de 2016
The syntax of access properties improved as of R2014b, allowing the notation you show. For earlier versions, you need to use get(), which is also still permitted.
if get(handles.PCMM, 'Value') == 1
metodo_compra = 1;
end

Más respuestas (0)

Categorías

Más información sobre Resizing and Reshaping Matrices en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by