Send data from an array to NumericEditFields
3 次查看(过去 30 天)
显示 更早的评论
I have as a response from a neural network (app.Simul) the following values:
ans =
0.5968
1.8558
4.1193
I want to put each value in a NumericEditFields as separate results.
I typed the following code for the (Simulate) button that performs the simulation:
app.Simul = sim(app.Calling.net_SOLD,app.D2)
app.EditField_1=app.Simul(1);
app.EditField_2=app.Simul(2);
app.EditField_3=app.Simul(3)
However, when running the program, the following error message appears:
Error setting property 'EditField_1' of class 'app_RNA_2'. Cannot convert double value 0.596828 to a handle.
It seems that it is necessary to convert the values obtained by the neural network (3x1 matrix) to values accepted by NumericEditFields
Send data from an array to NumericEditFields.
Can someone help me?
0 个评论
回答(1 个)
Walter Roberson
2022-8-9
app.Simul = sim(app.Calling.net_SOLD,app.D2);
app.EditField_1.Value = app.Simul(1);
app.EditField_2.Value = app.Simul(2);
app.EditField_3.Value = app.Simul(3);
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!