필터 지우기
필터 지우기

Array input through MATALB - GUI

조회 수: 1 (최근 30일)
Suraj Srivastava
Suraj Srivastava 2015년 2월 18일
댓글: Suraj Srivastava 2015년 2월 18일
Hi,
Is it possible to provide an array (7 row, 3 column)input through MATLAB GUI? I am comfortable with providing a single numeric value through GUI input box but wonder whether we can provide 2D array through MATLAB-GUI.
Looking forward to your help.
Thanks

채택된 답변

Giorgos Papakonstantinou
Giorgos Papakonstantinou 2015년 2월 18일
편집: Giorgos Papakonstantinou 2015년 2월 18일
Yes it is possible with uitable. Check also the Access Property Values of uitable.
i.e.
f = figure;
d = randi(100, 7, 3);
t = uitable(f,'Data',d,'ColumnWidth',{50},...
'ColumnEditable', [true true true]);
  댓글 수: 1
Suraj Srivastava
Suraj Srivastava 2015년 2월 18일
Well, thank you so much.
Now I want to save all the entered data. PLease help me out.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by