Send data from an array to NumericEditFields

1 Ansicht (letzte 30 Tage)
Arlan Pacheco Figueiredo
Arlan Pacheco Figueiredo am 9 Aug. 2022
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?

Antworten (1)

Walter Roberson
Walter Roberson am 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);
  1 Kommentar
Arlan Pacheco Figueiredo
Arlan Pacheco Figueiredo am 9 Aug. 2022
Thank you very much again Walter.
My app is getting great and I see I still have a lot to learn...
I'm very grateful!

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by