i need help in uitable

1 次查看(过去 30 天)
hi for all ... please i need help . i am using uitable and i need to search between row and column .. such as i need to search in row (1) and column (3) in same time and i got the intersection of row and column
thanks for all
  2 个评论
Geoff Hayes
Geoff Hayes 2015-1-18
Mays - you may want to provide an example of what you are trying to do. I understand the table, but it isn't that clear what you mean by needing to search in the first row and third column for the intersection (?). Please elaborate.
mays afif
mays afif 2015-1-20
i have a table contain a hexadecimal data and the row&column numbered (0,1,2,...A,B,C,D,E,F) .and i need a help to search in this table when i using uitable
such as i need the value of row number(2) and column number (A)

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2015-1-19
Get the data from the table like this
data = get(handles.uitable1, 'data');
Then to get the contents of the grid at the point where row 1 and column 3 intersect, simply do this:
theValue = data(1, 3);
  4 个评论
mays afif
mays afif 2015-1-20
didn't know how can i search in this table

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Object Identification 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by