Error using matlab.ui.​​control.E​d​itField/​se​t.Value (line 98) 'Value' must be a character vector or a string scalar.

16 ビュー (過去 30 日間)
I do simple App Designer to Circle/Sphere Calculations but I have error her
app.radius = app.EntertheradiusEditField.Value;
diameter = 2*app.radius;
[[[ app.ThediameterisEditField.Value = diameter;]]]
app.AreaEditField.Value=pi*app.radius^2;
app.CircumferenceEditField.Value =2*pi*app.radius;
app.VolumEditField.Value=(4/3)*pi*app.radius^3;
app.SurfaceEditField.Value=4*pi*app.radius^2;
Error using matlab.ui.control.EditField/set.Value (line 98)
'Value' must be a character vector or a string scalar.

採用された回答

Mario Malic
Mario Malic 2020 年 11 月 15 日
編集済み: Mario Malic 2020 年 11 月 15 日
Hello,
The component EDITED app.EntertheradiusEditField.Value is probably a Text Field, which accepts only characters/array, replace it with the numeric field component.
I would suggest you to work through the example applications in App Designer and you'll understand how things work clearly.

その他の回答 (1 件)

Image Analyst
Image Analyst 2020 年 11 月 15 日
Try this:
app.ThediameterisEditField.String = num2str(diameter);
Same for the other edit fields. The contents of the edit text box are the "String" property of the control not the "Value" property.

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by