How to get user input from edit field (numeric)

7 次查看(过去 30 天)
I'm trying to get the values from an edit field in order to do some manipulation.
x1 = get(app.EditField1, 'String');
x2 = get(app.EditField2, 'String');
y1 = str2double(x1)*Fs;
y2 = str2double(x2)*Fs;
However, for some reason I get the following error.
Error using matlab.ui.control.NumericEditField/get
Unrecognized property String for class NumericEditField.
I'm not sure why this is, I've tried various different ways from various posts on here but I'm having no luck. Any help would be appreciated.
EDIT: I've also tried returning types such as 'int' and 'string'. Additionally I've tried:
app.EditField1.Value
  2 个评论
Mario Malic
Mario Malic 2021-3-14
app.EditField1.Value should work, you don't have to use str2num.
dan bloodworth
dan bloodworth 2021-3-14
编辑:dan bloodworth 2021-3-14
When using app.EditField1.Value, I get the following error:
Error using handle.handle/get
Invalid or deleted object.
I'm certain that i'm referencing the correct name of the edit field.
EDIT: I've got it working, I was still using get() by accident. Thanks for your help

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by