how to coding push button using MATLAB GUI for neural network?

3 visualizaciones (últimos 30 días)
Ahmad Farhan
Ahmad Farhan el 14 de Jun. de 2015
Comentada: Mohamed Abdelhameed el 19 de Mzo. de 2017
hi,
i want to create a Gui for my nueral network as shown in figure below. when the user click the 'training button', it will the train the network that i create. when the user enter a value for Value1 - Value6 and click the 'simulation button', it will display the result in the 'result box'. the 'simulation button' is for simulate the network.
here is my coding for NN (i use feedforward backpropagation)
load train_input;
load train_target;
load test_input;
load test_target;
x1 = train_input;
t1 = train_target;
x2 = test_input;
t2 = test_target;
net = newff(minmax(x1),[13,2],{'tansig' 'logsig'},'trainlm');
net = init(net);
net.trainParam.show = 5;
net.trainParam.epochs = 1000;
net.trainParam.goal = 1e-5;
[net,tr]=train(net,x1,t1);
a = sim(net,x1);
i put this coding in training button callback. can anyone help me how to coding for my simulation button? thanks...
  1 comentario
Mohamed Abdelhameed
Mohamed Abdelhameed el 19 de Mzo. de 2017
Hi Ahmed, Please did you get any help in linking your network to the simulation button ?
Thanks in advance.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Deep Learning Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by