필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

GUI TABLE HELP NEEDED

조회 수: 2 (최근 30일)
Mohamed Abdelhameed
Mohamed Abdelhameed 2017년 5월 11일
마감: MATLAB Answer Bot 2021년 8월 20일
I am working with Artificial Neural Networks. As it shown in the picture below, I need the user to enter these five inputs ( BP, FVF, API, GG, TEMP) so that when I hit the simulate button the result will be shown in the second table GOR. To cut long story short, I need to the first row of the first table to pass through my network and the results to be display in the second table.
Please help I need this urgently for my thesis project.
  댓글 수: 3
Jan
Jan 2017년 5월 11일
Okay. What is your question? How can we help you? What have you tried so far and which problems occur?

답변 (1개)

Walter Roberson
Walter Roberson 2017년 5월 11일
data = get(handles.NameOfYourUiTable, 'Data');
first_row = data(1,:);
  댓글 수: 2
Mohamed Abdelhameed
Mohamed Abdelhameed 2017년 5월 11일
편집: Walter Roberson 2017년 5월 11일
n=load('Rs\net.mat');
data=get(handles.table1,'Data');
first_row=data(1,:);
ANN=n.net(first_row);
get(handles.table2,'data',ANN);
This is what I did and still does not work
Undefined function 'data_Callback' for input arguments of type 'matlab.ui.control.UIControl'.
Walter Roberson
Walter Roberson 2017년 5월 11일
You appear to be using GUIDE.
You appear to have manually deleted some code instead of using the GUIDE facilities for removing portions of the code.
You have a corrupted combination of .fig and associated code. If you attach your .fig and the .m then I will attempt to track down the invalid property (I wrote a program for checking these kinds of problems.)

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by