필터 지우기
필터 지우기

NN (pushbotton, text, edit)

조회 수: 1 (최근 30일)
Daniel Savu
Daniel Savu 2020년 6월 19일
답변: Daniel Savu 2020년 6월 22일
I have a neural network with 5 inputs and one output. I want to have an interface in which to enter certain values based on that network and display my result. The idea is that I don't know how to access all 5 of my pushbutton entries. I have the following code but it has only one entry.
load network.mat;
input_value = str2double(get(handles.edit1, 'String'));
output_value = sim(test_net, input_value)
set(handles.text2, 'String', num2str(output_value))

답변 (1개)

Daniel Savu
Daniel Savu 2020년 6월 22일
Hello! Can you help meplease! I have the following code phrase for neural network. I want to make my matlab interface read 5 inputs of the neural network. How can I do this? Thank you in advance
load retea.mat;
input_value = str2double(get(handles.edit1, 'String'));
output_value = sim(test_net, input_value)
set(handles.text2, 'String', num2str(output_value))

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by