App Designer returning Value in EditField
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Giancarlo Meccariello
am 8 Mär. 2021
Kommentiert: Giancarlo Meccariello
am 8 Mär. 2021
I wrote a code to calculate some values I insert in the Edit fields.
First of all do I have a DropDown Menu, with some values which I want to calculate with.
After I performe the calculation (with the value from DropDownMenu and values from EditField) do I want to return the result in an Edit field.
If run the programm and Insert all my values do I get the following error:
"Error using matlab.ui.control.internal.model.AbstractNumericComponent/set.Value (line 111)
'Value' must be a double scalar."
That's my code for the DropDown menu. I want to safe the value in the variable "app.d_th"
% Value changed function: aDropDown
function aDropDownValueChanged(app, event)
app.d_th = app.aDropDown.Value
end
I have a Calculation Button which looks like this. I have shortened the entire calculation. that's just to show you how it looks. The goal is when I press the Button I want to performe the calculation and display it in the "ResultEditField"
% Value changed function: BerechnenButton
function BerechnenButtonValueChanged(app, event)
value = app.BerechnenButton.Value;
d_th = app.d_th/1000 %in meter. 3.6mm = 0.0036m
p_h = app.p_h * 10^5 %Hochdruck in pascal
m_flow = d_th.^2 + p_h
app.ResultEditField.Value = m_flow
end
Any hints?
0 Kommentare
Akzeptierte Antwort
Mario Malic
am 8 Mär. 2021
Bearbeitet: Mario Malic
am 8 Mär. 2021
Hi,
app.aDropDown.Value is one of the values in Items (if ItemsData is empty), therefore it's a character array.
if you set ItemsData as well to be numeric, then Value property will be of the same type. However, you can keep it simple and use line below to fix the issue.
app.d_th = str2num(app.aDropDown.Value)
5 Kommentare
Mario Malic
am 8 Mär. 2021
Hm, you'll have to convert the output of these as variable types are different, even though their values are the same. On this one, you'll have to use the search tool and find related questions.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Call Python from MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!