Send data from an array to NumericEditFields
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Walter Roberson
il 9 Ago 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);
Vedere anche
Categorie
Scopri di più su Sequence and Numeric Feature Data Workflows in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!