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

1 view (last 30 days)
% 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

Answers (1)

Geoff Hayes
Geoff Hayes on 27 May 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?

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!