Send data from an array to NumericEditFields
1 view (last 30 days)
Show older comments
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 Comments
Answers (1)
Walter Roberson
on 9 Aug 2022
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);
See Also
Categories
Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!