필터 지우기
필터 지우기

How to input and save data from image to uitable?

조회 수: 1 (최근 30일)
Een Qurota Aini
Een Qurota Aini 2013년 10월 1일
댓글: Een Qurota Aini 2013년 10월 2일
how to enter data in comand window to the gui matlab uitable? I have a program from the data generating RGB image, how to insert the data to uitable? Please Help me Een sincerly Qurota Aini

답변 (1개)

Walter Roberson
Walter Roberson 2013년 10월 1일
Put the data into a cell array. set() the 'Data' property of the uitable to be the cell array.
For example,
tab = {2, 4, 6, 8*rand()};
set(handles.uitable1, 'Data', tab);
  댓글 수: 2
Een Qurota Aini
Een Qurota Aini 2013년 10월 1일
편집: Een Qurota Aini 2013년 10월 1일
thanks for answer.
sorry Mr. Walter i'm not understand about tab = {2, 4, 6, 8*rand(};........
what is the mean?
Een Qurota Aini
Een Qurota Aini 2013년 10월 2일
thank you very much for the reply. I've tried several programs. Well now I am confused on the database for the value of the feature on the leaves. As in the fingerprint program with neural network, the study was also no image database containing finger. Well, I am confused. 1. When the program start to figure out the histogram data leaves no feature value in the command window 2. When data from the value of the features I put my gui uitable program confused what should I enter or source code to connect the data values to be entered into uitable feature in gui? I was confused about entering data values in the command window feature leaves that go into uitable and can be saved in the uitable as inputs for training and testing the neural network

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 App Building에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by