User`s guide

14-5
R2008a Code R2008b Code
for idx = 1:numel(values)
val = values{idx};
if ~ischar(val) || size(val,1) > 1
values{idx} = evalc('disp(values{idx})');
end
end
table = uitable(parent,'Data',
[field_names values]);
Code written in previous releases that depends on ipttable will begin to warn and
eventually error in later releases.
imcontour Second Output Argument Changed
The second output argument of imcontour is now a handle to an hggroup object instead of
an array of handles to patch objects.
Compatibility Considerations
If you need to access handles of individual patch objects, use the following code to work
around the change.
[c, handleToHGGroup] = imcontour(..);
arrayOfHandlesToPatchObjects = get(handleToHGGroup, 'Child');
impixelinfo Tool Disappears when Image Changes
If you use imshow to display an image, open the impixelinfo tool, and use imshow to
open a new image, the impixelinfo tool will disappear along with the first image.
Compatibility Considerations
In previous versions, if you entered the following code:
imshow pout.tif
impixelinfo
imshow peppers.png