MATLAB: How to assign vector values to a specific column in uitable GUI matlab

uitable

Hi,
I am trying to show my results in uitable. I have an table with 8 column with column names. how is it possible to show results in 4th column only given first 3 have values.
I appreciate your help in advance.
Regards,

Best Answer

d = get(handles.Table1, 'data');
d(4,:) = num2cell([3; 17; 8; -5; pi]); %assign a cell array
set(handles.Table1, 'data', d);