From: Corey Kelly on
I'm building a GUI which extracts some data based on image processing operations. I want the extracted data to be displayed in a uitable, but I'm having a small problem. I know that I can update the entire table using something like

set(handles.data_table,'Data',...etc...)

but what if I just want to replace the data in a given row or column? Are there handles for individual cells/rows/columns? Data values will be obtained at various points in the program execution, so I'd like to add them to their reserved spot as they're generated.

Tried looking through the documentation, but it seems to put a lot of emphasis on user-editable tables, which is not what I'm looking for.

Thanks in advance!
From: Walter Roberson on
Corey Kelly wrote:

> but what if I just want to replace the data in a given row or column?
> Are there handles for individual cells/rows/columns?

http://www.mathworks.com/matlabcentral/newsreader/view_thread/281187#741805
From: Corey Kelly on
Walter Roberson <roberson(a)hushmail.com> wrote in message <iBEKn.29592$rE4.7806(a)newsfe15.iad>...
> Corey Kelly wrote:
>
> > but what if I just want to replace the data in a given row or column?
> > Are there handles for individual cells/rows/columns?
>
> http://www.mathworks.com/matlabcentral/newsreader/view_thread/281187#741805

Ahh, Mr. Robertson, always helping me out. haha.. thanks!