필터 지우기
필터 지우기

MatLab App Design - how to use default value for Edit Field function?

조회 수: 67 (최근 30일)
Hello,
I have an Edit Field box on the Design view and I opened a callback in the Code View. There is a default value in the Edit Field box that I would like to be used automatically when a user runs the app.
I have this:
% Value changed function: LengthEditField
function LengthEditFieldValueChanged(app, event)
app.L = app.LengthEditField.Value;
if isempty(app.L)
new_value = 3; % set default value to 3
end
app.L=new_value;
end
But when I use this variable in an equation, it tells me that its "empty (0x0) double".
How do I get it to display a value of 3 for example ?
Thank you,

채택된 답변

Cris LaPierre
Cris LaPierre 2021년 11월 8일
편집: Cris LaPierre 2021년 11월 8일
The code you have shared is for capturing the value in the edit field, not setting it. Also, keep in mind that callback functions only execute when they are called (typically by the user interacting with the component).
Therefore, the best way to set a default value for a component is through its properties in the Component Browser.
It is possible to set a value programmatically, but remember that the code will only be run when the callback function it has been added to is executed.
app.LengthEditField.Value = 3
  댓글 수: 11
Cris LaPierre
Cris LaPierre 2021년 11월 9일
편집: Cris LaPierre 2021년 11월 9일
Here is what is happening. You define app.Lp and app.I as so:
% Value changed function: WdiscLengthmEditField
function WdiscLengthmEditFieldValueChanged(app, event)
app.Lp= app.WdiscLengthmEditField.Value;
end
% Value changed function: CurrentAEditField
function CurrentAEditFieldValueChanged(app, event)
app.I = app.CurrentAEditField.Value;
end
That means app.Lp and app.I will not be assigned a value unless their corresponding callback function is executed. If the variable, which is defined in Properties, is never assigned a value, it will be empty.
Perhaps the solution, then, is to get rid of all the callbacks that are just for assigning values, and instead capture the corresponding component values inside the function where you need it. See attached.
function RunButtonPushed(app, event)
% Get values
app.L = app.LengthEditField.Value;
app.errL = app.lengtherror.Value;
app.D = app.DiameterEditField.Value;
app.errD = app.diametererror.Value;
app.Lp= app.WdiscLengthmEditField.Value;
app.Dp = app.WdiscDiametermEditField.Value;
app.n3 = app.OutliersDegreesofFreedomEditField.Value;
app.I = app.CurrentAEditField.Value;
app.Lnum = app.LorenzNumberWK2EditField.Value;
meryem berrada
meryem berrada 2021년 11월 9일
Oh I understand now. That makes sense. Perfect. Thank you so much for your help!
You're the best!!
Thank you!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by