How can I read the value Speicher1 with a second button disp(Speicher1). Speicher is a class.

1 visualización (últimos 30 días)
% Button pushed function: WeiterButton_2
function button2(app, event)
% Typ, Betrieb, Ak; Einheit; nLaden; nEntladen; Fuel; SOH;
Speicher1=Speicher(app.Typ1DropDown.Value , 'on');
end
function DateinameEditField_2ValueChanged(app, event)
disp(Speicher1)
end

Respuestas (1)

Geoff Hayes
Geoff Hayes el 27 de Mayo de 2019
Mario - can't you just calculate Speicher1 in your other function?
function DateinameEditField_2ValueChanged(app, event)
Speicher1 = Speicher(app.Typ1DropDown.Value , 'on');
disp(Speicher1)
end
Why do you need to calculate it in the button2 function if you don't seem to use the result anywhere but in the DateinameEditFeild_2ValueChanged callback?

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by