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
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.
采纳的回答
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);
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Object Identification 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!